I have a listgrid with a filter editor showing. Whenever I change the datasource (setDataSource()) the grid is doing a fetchData() (or maybe a filterData()).
Here is the grid;
Any thoughts as to why the grid is doing a fetch/filter when the dataSource is reset? Is there any way to suppress this behavior?
Thanks,
-p
Here is the grid;
Code:
isc.ListGrid.create({ autoFetchData: false, showFilterEditor: true, fields: [{name: "dummy"}]});
Thanks,
-p
Comment