michele
michele

Reputation: 26598

Clearing a jQgrid

How I can delete all value into a grid?

Thanks.

Upvotes: 1

Views: 1491

Answers (2)

Oleg
Oleg

Reputation: 222017

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.

Upvotes: 0

redsquare
redsquare

Reputation: 78687

See the clearGridData method

Upvotes: 1

Related Questions