6

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?

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Srinivas
  • 61
  • 1
  • 2

1 Answers1

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