:: Forum >>

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>

Paul
Friday, April 28, 2006
You haven't specified a value for the "myHeaders" variable.
var myHeaders = ["col A", "col B"];
Geno
Friday, April 28, 2006
sorry, i already use a header, its this...
var myHeaders = ["Ticker", "Company Name", "Market Cap.", "$ Sales", "Employees"];

but, its not the problem, seems to be a css problem becasue, the remote computer is linux, so.. i need to do something with the css file to get compatible, so can get visible the grid.
i dont have the solution yet.
Paul
Friday, April 28, 2006
Little hint... If your page uses charset=UTF-8 add the same think into the <link> for your AW.css

Browsers are bid disapointed by tying parse the CSS in UTF if they are likely loaded in other charset.
ASJ
Sunday, April 30, 2006

This topic is archived.


Back to support forum

Forum search