react-typeahead
react-typeahead copied to clipboard
Pure react-based typeahead and typeahead-tokenizer
Is there a way to sort results by relevance. For example, if or options list is `['Canada', 'Abacan', 'Bolcan']`. I type "Can" and see: ``` Abacan Bolcan Canada ``` But...
Adds disabled option by passing `disabled={true}` (using disabled attribute - https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XUL/Attribute/disabled) Convenient when making server requests.
- Allow for custom props to pass directly to the `customListComponent` element with new `customListComponentProps` prop on `Typeahead`
so that we can leverage default keydown behaviors provided by the browser, such as tabbing to the next input. The default behavior is the previous behavior, so that this is...
Hi! What is the function of these? Are included in the latest release? I've tested `defaultValue` and it is not working on 1.0.4. Any quick ideas about them? Thanks! Fran
It seems that `value` is only used on component construction, and not respected if changed afterwards. I would like to be able to change the value / default value of...
A suggestion for solving: issue #108 issue #74
I wanted to select all the text in the `` tag when a user clicked into it so I added the option to pass an `onClick` function as a propType.
I'm new to React and new to react-typeahead. So please excuse if the answer is obvious. I added an "X" symbol overlaying on the right side of the typeahead field....