Clearing a jQgrid
How I c开发者_Go百科an delete all value into a grid?
Thanks.
See the clearGridData method
If you plan to use clearGridData
method of jqGrid you should be careful if you have additional events added to the grid elements. It could be required to use additional parameter deepempty: true
in such situations.
In general you can delete jqGrid like any other elements on the page with respect of jQuery.remove
function. The method clearGridData
were introduced to speed up such removable in standard situations. On the other side jQuery.remove
works slowly but very safe independent of any kind of manually added events.
精彩评论