I am currently evaluating the grid control and am having trouble implementing one of the requirements we have. Our server side data source contains data that is continually updating. When using the virtual scrollbar, the first time you scroll through the dataset, it will request data for the missing rows which is good. The problem is, when you scroll back through the dataset, no new data is requested. It seems to be cached internally in the control. In our case this data is stale and needs to be requested again.
Here is what I have tried so far:
Here is what I have tried so far:
- Using pageable.refresh and clicking the refresh button manually does request new data. But I need to do this programatically.
- Using the refresh api on the grid in response to a scroll event does not request new data. It does not appear to be performing the same operation as the refresh button above.
Is there any way to clear the cache or otherwise force a read() of my datasource in this scenario?