Hello,
I use the sftextboxExt for the search of customers in my application and I can quite simply propose, in the Autocomplete, the list of my customers with their first names and their lastnames, with the code below:
...
<syncfusion:SfTextBoxExt.AutoCompleteItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock x:Name="firstName" FontWeight="Medium" Text="{Binding Prenom}"/>
<TextBlock x:Name="lastName" FontWeight="Medium" Margin="5,0,0,0" Text="{Binding Nom}"/>
</StackPanel>
</DataTemplate>
</syncfusion:SfTextBoxExt.AutoCompleteItemTemplate>
</syncfusion:SfTextBoxExt>
But when the user makes his choice, the sftextBoxExt only displays the name :
How to display the firstname and lastname (for example) after the selection?
In advance, thank you for your help
Thomas