Page 1 of 1

Problems with Autocomplete in 2.0.0-beta.1

Posted: 07 Aug 2018, 21:25
by xvoo
I am having a weird issue where Autocomplete will not refresh the input on render.
return
<div>
<AutoComplete value={this.state.Value} onChange={(e) => { this.setState({ Value: e.value }) }}
onBlur={this.updateValue} onFocus={this.toggleOSK} dropdown={true}
suggestions={this.state.ACSuggestions} completeMethod={this.AutoCompleteSuggestFilter}
/>
{this.state.Value}
</div>;

Above is my jsx. I would expect the autocomplete input value to always match the text output. But that is only the case 50% of the time.
As anyone else seen this?

Re: Problems with Autocomplete in 2.0.0-beta.1

Posted: 23 Aug 2018, 22:44
by cagatay.civici
I'll check and get back to you.