SplitAt with hidden columns not working

Hi,
Below is the sample code
mygrid3 = new dhtmlXGridObject(‘mygrid_container3’);
mygrid3.setImagePath(“dhtmlx25/dhtmlxGrid/codebase/imgs/”);
mygrid3.setHeader(",Status,#cspan,Product,#cspan,Week,#cspan,D,#cspan,");
mygrid3.attachHeader(“Id, ,Previous,Current,Previous,Current,Previous,Current,Previous,Current,O,E,Op Owner,Name,ID,Prod,Status,Stage,Close,Primary ,Desk,Category, Period,Created Date,Level 1,Level 2,Level 3,Level 4,Level 5,Number,CSC ,AM ,Action,RM “,
[””,"","","","","","","","",“background-color:FFEBCD;”,"","","","","","","","","","","","","","","","","","","","","",“background-color:FFEBCD;”,“background-color:FFEBCD;”,“background-color:FFEBCD;”]);
mygrid3.setInitWidths(“80,35,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100”);
mygrid3.setColAlign(“left,left,left,left,right,right,left,left,left,left,left,right,left,left,right,right,left,left,left,left,left,left,left,right,left,left,left,left,left,right,right,left,left,left”);
mygrid3.setColTypes(“ro,ra,ro,ro,myprice,myprice,ro,ro,ro,ro,ro,ro,ro,ro,ro,myprice,ro,ro,ro,ro,ro,ro,ro,ro,ro,ro,ro,ro,ro,ro,ro,txt,txt,txt”);
mygrid3.setSkin(“light”);
mygrid3.enablePaging(true, 200, 10, “pagingArea1”, true, “recinfoArea1”);
mygrid3.setPagingSkin(“bricks”);
mygrid3.setColumnColor(",#FFEBCD,#FFEBCD,#FFEBCD,#FFEBCD");
mygrid3.init();
mygrid3.setColumnHidden(0,true);
mygrid3.splitAt(6);
mygrid3.loadXML("");

When i am using this splitAt , it is messing up the grid display. Is it because of the hidden column. How to make the splitAt work when there are hidden columns.

Please, try to hide the column after the grid’s splitting.

mygrid3.init(); mygrid3.splitAt(6); mygrid3.setColumnHidden(0,true);

Hi,
Its not working. Its not showing the reamining columns of the grid. Showing only the first 6 columns

Unfortunately the issue cannot be reconstructed locally.
Please, open ticket at support@dhtmlx.com and provide a complete demo where the issue can be reconstructed.