Timeout error and display in jqGrid

Are there any timeout parameters that I can set in jqGrid to display an error message if any delay in server processing exceeds the set value?

+5
source share
1 answer

You can use the loadError event descriptor. Alternatively, you can change the default timeout using the timeout $ parameter . Ajax . To do this inside jqGrid, you can use ajaxGridOptions in a form similar to ajaxGridOptions: { timeout: 60000 } .

+6
source

Source: https://habr.com/ru/post/971218/


All Articles