I want to reload a jqgrid each 5 min (given interval time), is there any option/event. how to do this?
相关问题
- How to bind a dropdown list inside jqgrid row cell
- jQgrid filterToolbar fails with searchOnEnter
- Detecting checkbox event in jqGrid cell
- How to alter data received from the server before
- How to access other row data from a cell's cus
相关文章
- jqGrid Row Object in onSelectRow
- Weird behavior of jqgrid Grouping
- jQuery - jqGrid - submit buttons in each row
- JqGrid: sorting of local data
- How to Expand/Shrink row in Jqgrid dynamically
- VB.net FileUpload using Ajaxcall
- jqGrid addRowData doesn't work with grid as su
- How to turn off column highlighting (on hover) for
You can use
setInterval
JavaScript function to do automatic refreshingto stop the grid reload you can use one more JavaScript function:
In the "reloadGrid" I use less known parameter
current:true
which is described here to preserve the current selection in the grid.