Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Timeout error catch and display in jqGrid

Tags:

jqgrid

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?

like image 885
Srinivas Avatar asked Nov 01 '10 09:11

Srinivas


1 Answers

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 }.

like image 186
Oleg Avatar answered Oct 23 '22 05:10

Oleg