Hi,
I am currently using version 16.1.0.32 of the sfAutoComplete control.
When the AutoCompleteMode="SuggestAppend" the ValueChanged event is called in a loop.
In the ValueChanged event I do a search in Google Place Api like this:
autoLocations.ValueChanged += async (sender, e) =>
{
await UpdateAutoCompleteDataSource(e.Value);
};
The UpdateAutoCompleteDataSource updates an ItemList property which is bound to the DataSource property of the AutoComplete control.
It seems that when the first suggestion is appended to the Text property of the AutoComplete, the ValueChanged event will be called again and so on in a loop.
If I use only Suggest, all works fine.
Best regards
Espen Evje