0

I have followed the solution here but I have not been able to make it work. I'm using the free-jqGrid version 4.9.0. I don't get any JavaScript errors either. While debugging I see the control just passed over the click method call and nothing happens.

Would appreciate any help, Thanks

Community
  • 1
  • 1
A.K
  • 505
  • 1
  • 12
  • 30

1 Answers1

2

In case of usage free jqGrid 4.9 you need just specify searchOnEnter: true option. You can use searching option of jqGrid to specify searching option used for both searching dialog of searching toolbar. For example

searching: {
    closeAfterSearch: true,
    closeAfterReset: true,
    closeOnEscape: true,
    searchOnEnter: true,
    multipleSearch: true
}

See the wiki article.

Oleg
  • 220,925
  • 34
  • 403
  • 798