0

I am trying to show three jqGrid in single page. all things works fine, but problem is when I am trying to use search functionality of jqGrid at that time it only searches from last grid only!

i have three different box for search in individual grid.

how can resolve this problem , anyone know plz help me out...

Update: I have applied three different table ids as well as pager ids also.

sanghavi7
  • 758
  • 1
  • 15
  • 38

1 Answers1

1

I suppose that you will be able to fix the problem by usage of recreateFilter: true option of searching. The simplest way to use it is changing of defaults:

$.extend($.jgrid.search, {recreateFilter: true});

See the answer and another one for additional information.

Community
  • 1
  • 1
Oleg
  • 220,925
  • 34
  • 403
  • 798