Using composite property path like "Item.Name" for TextSearchPath throws NullReferenceException and NSUnknownKeyException in iOS.
When the user types "ㅅ ㅓ ㄱ ㅇ ㅕ ㄹ" , for example, it should appear as "석열".
Similar to the UWP AutoCompleteBox functionality - http://docs.telerik.com/windows-universal/controls/radautocompletebox/features/autocompletebox-webservice-support
When you type in a symbol in the AutoComplete and the Popup that contains the available items appear, it is not possible to change its position(top/bottom of the AutoComplete) or change its template. This is problematic in scenarios where the AutoComplete is at the bottom of the view as it hides the software keyboard.
When there are enough tokens to wrap them on a second row, the control hangs and application eventually crashes. Available in minor release 2017.3.927. It will also be available in the R3 2017 SP release.
When the TextSearchPath is set, the suggested items are different compared to when the property is not set.
Add TextChanged and Completed events when the user enters characters in to the input area.
In addition to the string property for NoResultsMessage, add support for using a DataTemplate as well.
When using TwoWay binding for AutoComplete on iOS, the Text is cleared using the Clear button, the Text property is not updated. Also, as a confirmation, the Xamarin.Forms PropertyChanged event is also not fired for the RadAutoComplete.Text Property Test 1 : Use the following repro for the Binding test: <telerikInput:RadAutoComplete Text="{Binding SelectedInsurer, Mode=TwoWay}" /> public string SelectedInsurer { get => selectedInsurer; set { SetProperty(ref selectedInsurer, value); // This is not hit on iOS when the Text is cleared using the "X" button } } Test 2 : Use this code for the PropertyChanged test: AutoComplete.PropertyChanged += AutoComplete_PropertyChanged; // Not executed on iOS when the Clear button is used. private void AutoComplete_PropertyChanged(object sender, PropertyChangedEventArgs e) { if (e.PropertyName == "Text") { Debugger.Break(); } }
Currently SuggestionView is displayed when the text is updated and the control is focused. There are cases when users need to explicitly set the Text of the control and open the view with the filtered items.