We're using a RadGrid with client side databinding pointing it to a webservice and specifying a SelectMethod. This grid also has a
GridClientDeleteColumn. When a row is deleted we have a client side event handler tied to the RowDeleting event which is where we call another webservice to make the actual deletion. Everything is handled by client side code - we have nothing in our code-behind.
Occasionally, it looks like the delete doesn't work. What I believe is happening is that the grid is updating itself before the web method we call in the RowDeleting event handler has had a chance to complete. Is there a way to control when the grid updates itself on the client? What we would like to do is call the web service to delete the data in the RowDeleting event. Then, in the webservice callback method we have specified we would update the grid.