Hi,
I have an existing table which I am generating via PHP.
I put the table code as:
Hi,
I have an existing table which I am generating via PHP.
I put the table code as:
Unfortunately you will have to call groupBy method after the calling an dhtmlxGrid:
mygrid = new dhtmlXGridFromTable(‘tblToGrid’);
mygrid.groupBy(0);
Here is the example of the init:
[code]
Column 1 | Column 2 |
11 | value1 |
11 | value2 |
11 | value3 |
function doBeforeInit(){
grid1.getCombo(0).put(“11”,“aaaaa”);
};
function doAfterInit(){
};[/code]