I am trying to create a multi-select SfAutoComplete that queries a REST API as the user types.
I have this semi-working for a single item, but there is a fatal flaw when using multi-select and tokens...
I have tried two options to capture a user's input. One is using the "ValueChanged" event to trigger a call to my REST API, and another is 2-way databinding the "Text" field and then using the setter to trigger the REST API call.
For example, I can search for the name "Alex" from a list. I type "Alex" and it shows that suggestion from my API. I select it, and it adds this token to the typing area of the AutoComplete. The problem is, this triggers ValueChanged as well as the "Text" setter. It tries to make another call to my API with the full text of the typing area.