enableRowspan() for treeGrid

Hi,
Is Rowspan compatible with dhtmlxTreeGrid in version 2.0 or any other version?
Can you provide a working example !

Try to update the version of your grid.

The following code works well for us:

mygrid = new dhtmlXGridObject('gridbox'); mygrid.selMultiRows = true; mygrid.imgURL = "../../../dhtmlxGrid/codebase/imgs/icons_greenfolders/"; mygrid.setHeader("Tree,Plain Text,Long Text,Color,Checkbox"); mygrid.setInitWidths("150,100,100,100,100") mygrid.setColAlign("left,left,left,left,center") mygrid.setColTypes("tree,ed,txt,ch,ch"); mygrid.setColSorting("str,str,str,na,str") mygrid.enableRowspan(true) mygrid.init(); mygrid.setSkin("dhx_skyblue") mygrid.loadXML("../common/test_list_1.xml", function(){ mygrid.expandAll(); mygrid.setRowspan("bmw1",2,2); });

If issue still occurs for you - please provide any kind of sample to reconstruct an issue.