Hi,
I have a few questions about the grid 3.0.
I have downloaded your standard edition of the grid 3.0 and placed it on a local page to test it, but I am having some problems.
-
The columns don’t seem to be resizable. From what I read in the documentation, the default behavior should allow this.
The resize cursor appears when I mouse over a column border, but I am just not able to resize it. -
The package I got when I downloaded from your site doesn’t contain the _debug version of the grid - where would I find this?
-
Is there a place where I can go see the differences between the standard and professional version?
I hope you can help me out with my questions
/Aidal
Here is my code:
[code](head script section)
var mygrid;
mygrid = new dhtmlXGridObject(‘folderViewGrid’);
mygrid.setImagePath(“dhtmlxGrid/codebase/imgs/”);
mygrid.setHeader(“col0,col1,col2,col3,col4,col5,col6,col7,col8,col9,col10,col11”);
mygrid.setInitWidths(“200,,,,,,,,,,,*”);
mygrid.setColAlign(“left,left,left,left,right,left,left,left,left,left,right,left”);
mygrid.setColSorting(“str,str,str,str,int,date,date,str,str,str,int,str”);
mygrid.init();
mygrid.setSkin(“light”);
mygrid.enableMultiselect(true);
mygrid.parse();
[/code]
[code](body section)