Categories | Question details Back To List | ||
splitAt Following is the code in my JS function to load the data into my grid. Execution stops at mygrid1.spliAt(7). No errors reported. When I comment the splitAt statement, execution continues and I see the grid. What are the occasions where splitAt fails? mygrid1.enableSmartRendering(true); mygrid1.clearAll(); mygrid1.init(); mygrid1.setSkin("light"); mygrid1.attachHeader(" ,,,#combo_filter,,,#combo_filter"); mygrid1.splitAt(7); ... .. mygrid1.parse(ar,"jsarray"); Answer posted by Support on Aug 08, 2008 02:28 Please be sure that a) you have included the dhtmlxgrid_splt.js b) the grid has at least 8 columns ( the grid must have at least one column in right part ) |