Is there any timeout options I can set in jqGrid to display an error, if any delay in server processing happens, more than a set value?
Asked
Active
Viewed 3,478 times
1 Answers
6
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 }
.

Oleg
- 220,925
- 34
- 403
- 798
-
Does it mean, that I can set data load timeout with snippet that you've provided? – Johnny_D Oct 30 '13 at 08:19