My DHTMLXGrid table header do not move horizontally with column when I am using in mobile application but in case of desktop browser grid work fine. Can anyone suggest the correct solution?
mygrid = new dhtmlXGridObject('gridbox');
mygrid.setImagePath("../dhtml/dhtmlxGrid/codebase/imgs/");
mygrid.setHeader(thead_name_arr.join());
mygrid.setColumnIds(colID.join());
mygrid.setColAlign(rowColAlign.join());
mygrid.setInitWidths(rowColWidth.join());
mygrid.enableTooltips(toolTips.join());
mygrid.setSkin("light");
mygrid.enableColumnMove(true);
mygrid.setEditable(false);
mygrid.attachEvent("onRowSelect", doOnRowSelected);
mygrid.init();