Hi,
Im using the latest Pro version of dhtmlx, and I have a grid, with dynamicaly loaded data. I
m also going to use filters for this gird. I read in the forum that I have to do filtering at server side. Its done but, now I have 1000 records to show in the grid with paging (10 rows/page) and all its fine untill I want to use the filter. After filtering it shows 10 rows and only one page, however it shoud have like 4-5 pages (4-500 rows match the filter).
The server side filtering is working well if I dont use paging, the paging is working well if I dont use filters or I don
t type anything into them, but together there are some realy big problems.
Could anybody help me to resolve this crash of paging by filter?
code of filtering
var newURL=“getRecords.php?manualFilter=”+JSON.stringify(filt);
l1Grid.clearAll();
l1Grid.updateFromJSON(newURL,_l1_grid_events,“json”);