Dear support,
Is it possible to add a event to a filter field? I want to fire filter by choosing ENTER key when the mouse cursor possitioned in the filter field.
Thanks in advanced,
You can use
grid.getFilterElement(index).onkeypress = function(){
… any custom logic …
}
and, the next command can be used to trigger filtering by existing values
grid.filterByAll();