If I load or reload jqGrid on a GET that takes a while to process and then make a subsequent call to $("#myJqGrid").trigger("reloadGrid");
while that first process is being called, then the second call never issues GET request. Is there a way I can queue them up or cancel them? Or any other ideas for handling this? Don't want to confuse the user with a bunch of queued requests, where they think they are getting a response for a request they just made, but it's the result from the first one.
I don't think this would be so much of an issue for me if there was a clean way to disable jqGrid from making the GET on initial load.