jQuery UI Widgets › Forums › Grid › handlekeyboardnavigation when in the filter row
Tagged: angular grid, filter row, grid, handlekeyboardnavigation, jquery grid, jqxgrid, keyboard
This topic contains 1 reply, has 2 voices, and was last updated by Dimitar 8 years, 7 months ago.
I’m having an issue where my keyboard handler is executing when I’m in the filter row. How can I detect when focus is in the filter row so I can avoid certain actions in my handler?
Hello cday,
Please try the following solution:
handlekeyboardnavigation: function (event) { if ($(event.target).closest('.jqx-grid-cell-filter-row').length > 0) { return false; } else { // your code here... } },
We hope it is helpful to you.
Best Regards, Dimitar
jQWidgets team http://www.jqwidgets.com/
You must be logged in to reply to this topic.