I have added the Telerik control for rad autocomplete to my project and given it a list of objects.
The trouble is, when I am debugging my project, I keep getting the output: "[0:] Could not load image named: {0}:"
I am not looking to add images to the list; the objects do not have images; and I am not adding images to the suggestion item template.
I even get this issue when I made a list of strings for the control to search for.
01.<telerikInput:RadAutoComplete x:Name="SearchControl" Watermark="Search..."02. HorizontalOptions="FillAndExpand" Margin="10,0,0,0"03. TextSearchPath="SearchByThis"04. CompletionMode="Contains">05. <telerikInput:RadAutoComplete.SuggestionViewHeight>06. <OnPlatform x:TypeArguments="x:Double" Android="200" WinPhone="400" iOS="400" />07. </telerikInput:RadAutoComplete.SuggestionViewHeight>08. <telerikInput:RadAutoComplete.SuggestionItemTemplate>09. <DataTemplate>10. <telerikInput:RadAutoCompleteLabel FontSize="18" HighlightColor="Black"11. TextColor="Silver" VerticalOptions="Center" />12. </DataTemplate>13. </telerikInput:RadAutoComplete.SuggestionItemTemplate>14.</telerikInput:RadAutoComplete>