I have a data grid in which the rows generate asynchronous web service calls when they are clicked.
The data returned from the web service is then used to populate other controls. If a user clicks on a data row and then clicks on a different data row prior to the first async call completing, then the other controls that are bound to the data returned from the web service become bound, subsequently, to both data sets that are returned. If for some reason the first asynchronous call completes after the second async call, then the data that is bound to the other control will not be in sync with the currently selected data row.
Our web service hits a database and the stored procedures are currently optimized so that results are returned within a split second so this should not be an issue for this application, but I would still like to know if there is a best practice when it comes to ensuring that asynchronously returned data is displayed properly according to interaction and the order in which that interaction occurs.
All development is done using the C#, the services are WCF services, and the application is using Silverlight with an MVVM design pattern.