Pressing search button in jqgrid toolbar opens advanced search window. Pressing enter key does not start seach. To start search, search button needs to be clicked.
How to allow enter key press to start search like in clicking in search button ?
Pressing search button in jqgrid toolbar opens advanced search window. Pressing enter key does not start seach. To start search, search button needs to be clicked.
How to allow enter key press to start search like in clicking in search button ?
To implement search on Enter key one have to implement binding to
keydown
event to any input fields and force searching on Enter. If you include jQuery UIjquery-ui.min.js
then you can use$.ui.keyCode.ENTER
instead of 13 for the better readability of the code.The code can be like
The demo demonstrate the code live.