Hello, I want to have two lists that get data from the same datasource, but I want them to have different views. One of them should show all the records that come from the server, the other one should show only the ones matching a criteria (which is fixed and not editable). I've seen two methods on the ListGrid to get filtered data, fetchData and filterData but the two of them call the underlying datasource to fetch data from the server. What I want to do is:
1. Have a datasource and get all the server data in it.
2. Have a list with the datasource showing all the records.
3. Have a list with the data in the datasource but filtering the data on the list, not the datasource. I mean, only filtering the current view of data. There's no need to fetch any more data and if it's fetched, the view should filter it locally but it should not remove data from the datasource.
Is it possible?
1. Have a datasource and get all the server data in it.
2. Have a list with the datasource showing all the records.
3. Have a list with the data in the datasource but filtering the data on the list, not the datasource. I mean, only filtering the current view of data. There's no need to fetch any more data and if it's fetched, the view should filter it locally but it should not remove data from the datasource.
Is it possible?
Comment