Hi Isomorphic,
I have a Paged List Grid with a Rest DataSource attached. I also have an attached filter editor to the grid.
Now I want to filter data on the partially populated grid (since pagination is enabled) this sends a server side request. Instead I want to enable client side filtering only.
Also I have set the 'useClientFiltering:true' property correctly but this makes no difference in the behaviour of the filter.
Here's grid source code:
Thanks,
+Abhishek
I have a Paged List Grid with a Rest DataSource attached. I also have an attached filter editor to the grid.
Now I want to filter data on the partially populated grid (since pagination is enabled) this sends a server side request. Instead I want to enable client side filtering only.
Also I have set the 'useClientFiltering:true' property correctly but this makes no difference in the behaviour of the filter.
Here's grid source code:
Code:
isc.ListGrid.create
({
ID: "searchResultsGrid",
dataProperties:{
useClientFiltering:true,
},
showFilterEditor:true,
dataPageSize: 50,
canEdit : true,
autoSaveEdits:false,
fetchData : function ()
{
return this.Super("fetchData", <SEARCH_FORM>.getValues());
},
dataSource:<SOME REST DATASOURCE.>,
autoFetchData: true
})
+Abhishek
Comment