Is it possible to cancel an existing radgrid async request. For example I have a search button that will use javascript to asynchronously refresh a radgrid control by doing something like this:
window['<%= mygrid.ClientID %>'].AsyncRequest('<%= mygrid.UniqueID', 'search');
However if the user finds that the query is taking too long they should be able to search again. In this scenario the javascript should kill the existing request and start a new one. However I am seeing that if I just use the code above the page will wait for the existing request to finish before launching a second request. Is there a way to alter this behavior so that the first asynrequest call is canceled and the page no longer waits for a response?