SplitAt() and GroupBy together do not seem to work

Hi,
I have a splitAt(6) before loading the data. After Loading the data, I am doing postProcess to groupBy(0). However, I am getting first 6 columns ( which are frozen) as blank. When I remove the postProcess function, Ii works fine.
Just wondering if splitAt() and gripupBy() fiunctions work together?

Here is my code snippet

[code]here is my code snippet.

mygrid.splitAt(6);
mygrid.enableRowsHover(true,‘grid_hover’);
mygrid.setSkin(“dhx_skyblue”);
mygrid.loadXML(“xml/testdata/riskStats.xml”, postProcess);

function postProcess()
{
mygrid.groupBy(0);
mygrid.setColumnHidden(0,true);

		}

[/code]

try to change you code like following:

mygrid.groupBy(0,["", “#title”, “”, “”, “”, “”, “”, “”]);

Hi olga, it didn’t work.
I was thinking to get it working by rowspan.
Could you please suggest the XML structure for setting the rowspan for the cell.

I tried with

content

but i didnt work either.

Please check working example here dhtmlx.com/docs/products/dht … wspan.html