Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<HTML>
<HEAD>
<SCRIPT language="Javascript">
function clearAttrs()
{
document.all.DataGrid1.style.borderCollapse = "separate";
}
function setAttrs()
{
document.all.DataGrid1.style.borderCollapse = "collapse";
}
</SCRIPT>
</HEAD>
<body onafterprint="setAttrs() onbeforeprint="clearAttrs()>
</body>
</HTML>
<HTML>
<HEAD>
<SCRIPT language="Javascript">
function clearAttrs()
{
if (document.all.DataGrid1 != null)
document.all.DataGrid1.style.borderCollapse = "separate";
else if (document.all.DataGrid2 != null)
document.all.DataGrid2.style.borderCollapse = "separate";
}
function setAttrs()
{
if (document.all.DataGrid1 != null)
document.all.DataGrid1.style.borderCollapse = "collapse";
else if (document.all.DataGrid2 != null)
document.all.DataGrid2.style.borderCollapse = "collapse";
}
</SCRIPT>
</HEAD>
<body onafterprint="setAttrs() onbeforeprint="clearAttrs()>
</body>
</HTML>