Active is undefined
I'm getting a "Active is undefined" error when using Active.Controls.Grid.
I have included grid.js and aw.js in the JSP.
Maybe I should be using another control?
Basically I'm trying to load a grid by building a javascript array. I'm loading the array by looping throught a java collection and then doing the following:
var obj = new Active.Controls.Grid;
obj.setColumnProperty("count", myHeaders.length);
obj.setRowProperty("count", myData.length);
obj.setDataProperty("text", function(i,j){return myData[i][j]});document.write(obj);
Should I be using another grid control? Thanks for any help!
I have included grid.js and aw.js in the JSP.
Maybe I should be using another control?
Basically I'm trying to load a grid by building a javascript array. I'm loading the array by looping throught a java collection and then doing the following:
var obj = new Active.Controls.Grid;
obj.setColumnProperty("count", myHeaders.length);
obj.setRowProperty("count", myData.length);
obj.setDataProperty("text", function(i,j){return myData[i][j]});document.write(obj);
Should I be using another grid control? Thanks for any help!
Gary
June 30,