Timeout error catch and display in jqGrid
Is there any timeout options I can set in jqGrid to display an error,开发者_StackOverflow if any delay in server processing happens, more than a set value?
You can use loadError event handle. Moreover you can change the default timeout with timeout
parameter of the $.ajax. To do this inside of jqGrid you can use ajaxGridOptions option in the form like ajaxGridOptions: { timeout: 60000 }
.
精彩评论