Grid AW 2.0 FireFox Problem on remote computer
Hello, i have a page test with one grid, when i test the page on my local computer, the page works fine in IE6 and FF 1.5, i see the grid in both explorers ok, but when i put the page on a remote computer (with linux) i only see the page on internet explorer.
my page test its very small and simple....
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script src="runtime/lib/aw.js"></script>
<link href="runtime/styles/xp/aw.css" rel="stylesheet"></link>
</head>
<body>
<script>
//D A T A S O U R C E S
var myData = [["MSFT","MicrosoftCorporation", "314,571.156", "32,187.000", "55000"],
["ORCL", "Oracle Corporation", "62,615.266", "9,519.000", "40650"],
["KNM", "Konami Corporation (ADR)", "3,710.784", ".000", "4313"]];
var obj = new AW.Grid.Extended; obj.setCellText(myData);
obj.setCellEditable(true); obj.setHeaderCount(2);
obj.setHeaderText(myHeaders); obj.setColumnCount(5);
obj.setRowCount(3);
document.write(obj);
</script>
</body>
</html>
my page test its very small and simple....
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script src="runtime/lib/aw.js"></script>
<link href="runtime/styles/xp/aw.css" rel="stylesheet"></link>
</head>
<body>
<script>
//D A T A S O U R C E S
var myData = [["MSFT","MicrosoftCorporation", "314,571.156", "32,187.000", "55000"],
["ORCL", "Oracle Corporation", "62,615.266", "9,519.000", "40650"],
["KNM", "Konami Corporation (ADR)", "3,710.784", ".000", "4313"]];
var obj = new AW.Grid.Extended; obj.setCellText(myData);
obj.setCellEditable(true); obj.setHeaderCount(2);
obj.setHeaderText(myHeaders); obj.setColumnCount(5);
obj.setRowCount(3);
document.write(obj);
</script>
</body>
</html>
Paul
April 28,