I have a grid control whose data is loaded/synced using dhtmlxDataStore:
[code] abDataStore = new dhtmlXDataStore({
url: “prMain.php”,
datatype: “xml”
});
. . .
aGrid.sync(abDataStore, {
sort:true,
filter:true
});
[/code]
If I enable grid paging, the grid’s #select_filter headers don’t show each column’s unique values – they don’t show anything at all!
Hello, DHX people? Are you still there? Any thoughts about why the #select_filter isn’t working with enabled paging and datastore, please? I would like to know if you’ve been able to replicate this issue and what the solution might be.
It implements the same scenario and works correctly. The key moment here is the usage of a second parameter of the sync command. It instructs that sorting in a grid must be applied to the underlying datastore.