Hi,
I am trying to implement the AutoSuggest but doesn't seem to be working
I have a List<string> with more than 6000 records that I have bound to a control and it doesn't auto suggest
Here is my XAML
<Syncfusion:SfTextBoxExt Grid.Column="1" Grid.Row="8" x:Name="City" Margin="10,0,0,10" AutoCompleteSource="{Binding Cities}" AutoCompleteMode="Suggest" SuggestionMode="StartsWith" SearchItemPath="" Text="{Binding FamilyMember.City, Mode=TwoWay, NotifyOnValidationError=True, UpdateSourceTrigger=PropertyChanged, ValidatesOnDataErrors=True}" Validation.Error="Validation_Error"/>
I can swear that Cities object is available on this user control.
I am also looking for two events for this textbox where user either completes typing on a text box and moves away from this field and also if they select from suggested items. I then want to populate State and Country from that typed or selected value.
Thanks