David Harkness
David Harkness

Reputation: 36542

Select matched option with React Bootstrap Typeahead

In my React Bootstrap Typeahead component, the user can press Tab to select the currently matched option. How can I accept Enter as well?

Upvotes: 0

Views: 485

Answers (1)

ericgio
ericgio

Reputation: 3509

You can use the selectHintOnEnter prop to achieve this behavior:

<Typeahead
  options={[ ... ]}
  selectHintOnEnter
/>

Enabling this prop will allow users to select the hint by pressing Enter as well as Tab. Here's a live example.

Upvotes: 1

Related Questions