I have created a Faceted Search page. This works fine when I enter text to search and then press enter. I would also like to have the search start when I press the Tab key.
Can this be done?
Duplicating the default Perform Search dynamic action and changing
this.browserEvent.which === apex.jQuery.ui.keyCode.ENTER
into
this.browserEvent.which === apex.jQuery.ui.keyCode.TAB
does not work. Somehow the TAB key gets handeled differently.