Skip to content
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
@kennyhk

Description

@kennyhk

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>;

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions