1

Is there a way to remove all rows of jqGrid be removed without calling gridComplete event.

chugh97
  • 9,602
  • 25
  • 89
  • 136

1 Answers1

4

There are couple of methods that you can use. gridDestroy and grid Unload, you can use any of them based on your requirement.

Check this link for further refrence jqGrid GridUnload/ GridDestroy

or you can use this

$('#grid1').jqGrid('clearGridData');

Community
  • 1
  • 1
Piyush Sardana
  • 1,748
  • 4
  • 19
  • 33