Whenever I reach the end of the grid, no new data is loaded (no xhtml requests are sent either). It seems to not be reading my total_rows variable in the JSON. Why is this? Here is my initialization:
this.music_table = new dhtmlXGridObject("music_table");
this.music_table.setImagePath("/media/dhtmlxGrid/codebase/imgs/");
this.music_table.setHeader("Title,Artist,Album,Track,Plays,Genre,Time,Bitrate,Added");
this.music_table.setInitWidthsP("20,18,18,7,7,7,7,7,9");
this.music_table.setColSorting("server,server,server,server,server,server,server,server,server");
this.music_table.setColTypes("ro,ro,ro,ro,ro,ro,ro,ro,ro");
this.music_table.enableMultiselect(true);
this.music_table.init();
this.music_table.enableSmartRendering(true, 100);
this.music_table.setAwaitedRowHeight(25);
this.music_table.attachEvent("onXLE", grids.update_count);
this.music_table.load("/index.php/library/data/music_table", "json");
and my JSON starts like this and is properly formatted:
{'total_count':56222, 'pos': 0, rows:[{id:28786, data :['Them...
Any help? thanks