This repository was archived by the owner on Oct 27, 2022. It is now read-only.
This repository was archived by the owner on Oct 27, 2022. It is now read-only.
AutoComplete on Combobox is buggy on IE/Edge #33
Closed
Description
i am using the babel-polyfill let Combobox working on IE 11 and Edge, but when enable autocomplete, the input text will be reversed. For example, when input "Hello", the combobox display as "olleH".
my codes (please note that also enable auto-size:
let props = {
options: suggestions,
onChange: this.onKeywordChange.bind(this),
onValueChange: this.onValueChange.bind(this),
autocomplete: true, // buggy on IE11
autosize: true
};
return <Combobox {...props}>
<FormControl type='search' placeholder={placeholder} value={this.state.suggestion.keyword} ref="keyword"/>
</Combobox>;