Categories | Question details Back To List | ||
Hi,
Thanks,
In the examples and documentation should be made:
mygrid.init();
mygrid.splitAt(n);
But I don't have:
mygrid.init();
My code is:
mygrid = dhtmlXGridFromTable('gridbox');
mygrid.attachHeader...
.....
If I put, for instance:
mygrid.splitAt(3);
The grid is damaged!
Some idea?
Best regards,
CHW
Answer posted by Support on Mar 24, 2008 02:43 The split must be initialized after structure of grid configured, in case of initializing grid from HTML table it can be done only by code modification. In dhtmlxgrid_start.js you can locate and update windowf.init(); with windowf.init(); windowf.splitAt(1); |