Hi,
We have a server side filtering component to our data store. When we issue multiple requests before the server can respond:
The "user_id = 1" request may end up coming after the second request, which means the displayed data is not what the user requested.
Is there a way that this can be fixed? It seems like we can only listen to onChange events in the dataSource, which unfortunately don't tell us which request this response data is for. Thanks!
We have a server side filtering component to our data store. When we issue multiple requests before the server can respond:
dataStore.filter({ user_id: 1 });
dataStore.filter({ user_id: 2 });
The "user_id = 1" request may end up coming after the second request, which means the displayed data is not what the user requested.
Is there a way that this can be fixed? It seems like we can only listen to onChange events in the dataSource, which unfortunately don't tell us which request this response data is for. Thanks!