I'm using a Token multiselect with an async datasource
After searching the datasource gets filled with data.
I can select an item from the list and it gets added to my bound selectedItem collection
The selection automatically triggers another search("selected item name") which returns an empty list for the Datasource as the selected item is filtered.
Now sometimes out of the blue when selecting an item, the selectedItem Collection is simply cleared without any debug output.
I updated to the latest packages
Syncfusion.Xamarin.Core Version="18.3.0.40"
Xamarin.Forms Version="4.8.0.1560"
the xaml looks like this
<combobox:SfComboBox DataSource="{Binding Exercises}"
SelectedItem="{Binding SelectedExercises, Mode=TwoWay}"
DisplayMemberPath="Name"
NoResultsFoundText="Nothing Found"
HeightRequest="40" EnableAutoSize="True" x:Name="exerciseComboBox"
ValueChanged="ExerciseComboBox_ValueChanged"
MultiSelectMode="Token" TokensWrapMode="Wrap"
MaximumDropDownHeight="200"
Watermark="Search Exercise..." IsEditableMode="true"/>