Hi team,
we are trying to use your SfAutocomplete control, but we are facing few problems that you will able to help us solve.
This is what we are trying to achieve, same design on Android, iOS and UWP platforms:
There are the problems we are facings:
Thanks,
Peter
|
<autocomplete:SfAutoComplete x:Name="autoComplete"
DisplayMemberPath="Name"
DropDownClosing="autoComplete_DropDownClosing"
MultiSelectMode="Token”
DataSource="{Binding EmployeeCollection}"> |
|
private void autoComplete_DropDownClosing(object sender, DropDownCancelEventArgs e)
{
if (e.IsItemSelected)
{
e.Cancel = true;
}
else
{
e.Cancel = false;
}
} |