Grid header borders are printed a second time in the wrong place.
When I print my grid (see below for example) with IE9, a "ghost image" of the header is produced, that is, the borders of the header are printed a second time to the right of the table.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Print table</title>
<style>
#myGrid {width:700px}
#myGrid .aw-column-0 {width: 150px; }
#myGrid .aw-column-1 {width: 150px; }
#myGrid .aw-column-2 {width: 100px; }
#myGrid .aw-column-3 {width: 100px; }
#myGrid .aw-column-4 {width: 100px;}
#myGrid .aw-column-5 {width: 60px; }
</style>
<link href="aw.css" rel="stylesheet" type="text/css">
<script src="aw.js"></script>
</head>
<body>
<script type="text/javascript">
var cellData = [["Fritz Muster","Baarerstrasse 25","6300 Zug","fritz@muster.ch","CHE-533.105.841","Aktiv"],
["Petra Muster","Freienhofgasse 21","3600 Thun","petra@muster.ch","CHE-197.193.934","Aktiv"],
["Hans Dampf","Untere Rebgasse 8","4058 Basel","hans@dampf.ch","CHE-817.582.013","Aktiv"],
["Fritz am Bach","Stockerstrasse 41","8002 Zürich","fritz@bach.ch","CHE-751.113.846","Aktiv"],
["Annebäbeli Fuess","Marktgasse 66","3027 Bern","","","Aktiv"]];
var headerText = ["Name","Strasse / Nr.","PLZ / Ort","E-Mail","UID","Status"];
var obj = new AW.UI.Grid;
obj.setId("myGrid");
obj.setCellData(cellData);
obj.setHeaderText(headerText);
obj.setRowCount(5);
obj.setColumnCount(6);
document.write(obj);
</script>
</body></html>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Print table</title>
<style>
#myGrid {width:700px}
#myGrid .aw-column-0 {width: 150px; }
#myGrid .aw-column-1 {width: 150px; }
#myGrid .aw-column-2 {width: 100px; }
#myGrid .aw-column-3 {width: 100px; }
#myGrid .aw-column-4 {width: 100px;}
#myGrid .aw-column-5 {width: 60px; }
</style>
<link href="aw.css" rel="stylesheet" type="text/css">
<script src="aw.js"></script>
</head>
<body>
<script type="text/javascript">
var cellData = [["Fritz Muster","Baarerstrasse 25","6300 Zug","fritz@muster.ch","CHE-533.105.841","Aktiv"],
["Petra Muster","Freienhofgasse 21","3600 Thun","petra@muster.ch","CHE-197.193.934","Aktiv"],
["Hans Dampf","Untere Rebgasse 8","4058 Basel","hans@dampf.ch","CHE-817.582.013","Aktiv"],
["Fritz am Bach","Stockerstrasse 41","8002 Zürich","fritz@bach.ch","CHE-751.113.846","Aktiv"],
["Annebäbeli Fuess","Marktgasse 66","3027 Bern","","","Aktiv"]];
var headerText = ["Name","Strasse / Nr.","PLZ / Ort","E-Mail","UID","Status"];
var obj = new AW.UI.Grid;
obj.setId("myGrid");
obj.setCellData(cellData);
obj.setHeaderText(headerText);
obj.setRowCount(5);
obj.setColumnCount(6);
document.write(obj);
</script>
</body></html>
Marcel Zumstein
March 5,