I would like to allow the user to be able to shift-tab to navigate backwards from a Typeahead input. However, the _onKeyDown handler was capturing it as a "tab".
Since none of the built in handlers are looking for "shift", I fixed this issue by passing the keyDown event directly up to the handler if the shift key is pressed.
I would like to allow the user to be able to shift-tab to navigate backwards from a Typeahead input. However, the _onKeyDown handler was capturing it as a "tab".
Since none of the built in handlers are looking for "shift", I fixed this issue by passing the keyDown event directly up to the handler if the shift key is pressed.