Blueprint's Select Component onItemSelect trigger on 'Tab' key

349 Views Asked by At

The onItemSelect callback method for Blueprint's select component gets triggered only when an option is clicked or the 'enter' key is pressed. I would like it to be triggered when the 'Tab' key is pressed too.

    const DropSelect = Select.ofType<IDropdownOption>();
    <DropSelect
            onItemSelect={onItemSelect}
    />

0

There are 0 best solutions below