Provide an API for changing the SuggestionView position. For example the SuggestionView could be visualized above or under the input control.
Users need to restrict suggestion of already selected tokens. In other words when users create a token, that particular item should not be suggested when typing new tokens anymore.
Provide an Auto option for the SuggestionViewHeight that would dynamically change depending on the content.
When the control is hosted inside RadPopup, the application crashes. This is due to the fact that nesting popups is not supported.
Consider changing the implementation of the RadAutoCompleteView to use different control for visualizing suggestions and NoResults message.
LG G4 with Android 6.0 Android 4.2.2 Available in minor release 2018.3.1109. It will also be available in the R1 2019 release.
Hello Telerik team !
I would like to suggest an improvement which should already be implemented as it may be a common requirement. (notice that I'm aware it's still in beta that's why I suggest a feature request).
Context :
Use a RadAutoCompleteView. Start to type something and select an item from the suggestions.
Current behavior :
The item is well selected but the keyboard remains visible even if you hide the suggestion view.
Expected behavior :
When selecting an item, the keyboard should be collapsed. (I tried to use a KeyboardService injected from platform specific implementation with dependency injection. I manage to make it work on Android but I couldn't find a workaround on iOS).
PS : it would be awesome to have a bindable property on this control which allows us to tell the control "hide the suggestion view and hide the keyboard when an item gets selected (touch input from user)". Name suggested : HideSuggestionAndKeyboardOnItemSelected (I didn't find a shorter name sorry haha). Type : bool.
Pointing how to achieve that should be in the documentation as most of developpers who will use this control may want to achieve the same behavior. You'll save time and theirs if they don't need to reach you out and open a ticket to ask you how to do that.
Best regards to everyone!
Hello,
As per forum thread https://www.telerik.com/forums/autocompleteview-causes-memory-leaks ACV control causes memory leaks on iOS.
Here is the repro project https://github.com/VitalyKnyazev/AutoCompleteViewLeak
Thanks
Vitaly
Use the following code:
<StackLayout Orientation="Vertical">
<telerikInput:RadAutoCompleteView ItemsSource="{Binding Source}"
SuggestMode="SuggestAppend"
TextSearchPath="Name" />
<telerikInput:RadAutoCompleteView ItemsSource="{Binding Source}"
SuggestMode="SuggestAppend"
TextSearchPath="Name"/>
<telerikInput:RadAutoCompleteView ItemsSource="{Binding Source}"
SuggestMode="SuggestAppend"
TextSearchPath="Name"/>
</StackLayout>
Steps to reproduce:
The suggestions view won't disappear when the AutoCompleteView loses and receives focus and the entered text is quickly deleted.
When we set the ShowSuggestionView to false the filtering logic is not triggered - it should work like the AutoComplete control. Available in minor release 2018.3.1122. It will also be available in the R1 2019 release.
Attached is a video of how to reproduce the problem on UWP.
Steps to repro
=> Observe the infinite loop.