If you're binding AutoComplete's Text to a view model property, the initial value doesn't show. It only updates after the bound string is set after the control is loaded. Repro: VIEWMODEL private string enteredText = "Hello World 1"; public string EnteredText { get { return enteredText; } set { enteredText = value; OnPropertyChanged(); } } VIEW <telerikInput:RadAutoComplete Text="{Binding EnteredText}" /> WORKAROUND private void AutoComplete_OnNativeControlLoaded(object sender, EventArgs e) { (BindingContext as ViewModel).EnteredText = "Hello World 2"; }
When receiving or losing focus, the Focused, Unfocused and FocusChangeRequested event handlers are not executed. Observed in Android and iOS
Using composite property path like "Item.Name" for TextSearchPath throws NullReferenceException and NSUnknownKeyException in iOS.
Allow customers to easily take the user input and trigger custom searching algorithm and assign the results to the ItemSource of the AutoComplete. Available in R3 2018 release as part of the feature-set of the new and improved RadAutoCompleteView control, for more details refer to: https://docs.telerik.com/devtools/xamarin/controls/autocompleteview/autocompleteview-overview
Available in R3 2018 as part of the features set of the new and improved RadAutoCompleteView control, for more details on it refer to: https://docs.telerik.com/devtools/xamarin/controls/autocompleteview/autocompleteview-overview As to the concrete feature go to: https://docs.telerik.com/devtools/xamarin/controls/autocompleteview/autocompleteview-methods
Avalable in R3 2017 SP release.
Add TextChanged and Completed events when the user enters characters in to the input area.
Available in the R2 2018 release.
When setting CompletionMode="Contains": On Android: It doesn't work at all On UWP: It works only for the first character. Available in minor release 2017.3.1214. It will also be available in the R1 2018 release.
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.
There does not seem to be an easy way to modify the custom message shown when no result is found in the AutoComplete control. We can expose a property similar to the Watermark one. Edit: Avalable in R3 2017 SP release.
Currently the Text property can only be get. Expose it as setter as well.