Hi there,
I am using SFAutoComplete control on my iOS project and it is working great except when I set custom ItemTemplate. After I set custom ItemTemplate the filtering doesn't work as expected, it starts showing wrong suggesion items. For example I am searching 34011 and when I enter 34 autocomplete shows correct list of suggesions, but when I enter 340 or 3401 it shows correct item with some random items. If I don't set custom template for ItemTemplate property everything works as expected. Here is my code without ItemTemplate:
<c:CAutoComplete
Text="{Binding OEMPart}"
DataSource="{Binding OemAutoCompleteSource}"
DisplayMemberPath="Name"
DropDownItemHeight="40"
SuggestionMode="StartsWith"
AutoCompleteMode="Suggest"
Watermark="Part Number"
HeightRequest="40"
TextSize="{x:Static local:PlatformDependentValue.AutoCompleteFontSize}"
DropDownTextSize="{x:Static local:PlatformDependentValue.AutoCompleteFontSize}"
MinimumPrefixCharacters="1"
MaximumDropDownHeight="200"
Completed="btnSearch_clicked"/>
Thanks in advance
Khasan