We have some listgrids with the filter editor turned on. They all pretty much look like the code below. After the inital fetch, once we try to filter, it filters it locally and doesn't return the correct information a lot of the time. But after that, if you change the filter criteria, it will always re-fetch correctly.
How do I turn off the filtering locally and make it fetch every time?
How do I turn off the filtering locally and make it fetch every time?
Code:
isc.ListGrid.create({ ID: "Grid", dataSource: "gridDS", autoFetchData: true, showFilterEditor: true, fields: [ {name: "Field1"}, {name: "Field2"} ] })
Comment