Completed
Last Updated: 22 Apr 2019 10:43 by ADMIN
Completed
Last Updated: 22 Apr 2019 10:35 by ADMIN
Using composite property path like "Item.Name" for TextSearchPath throws NullReferenceException and NSUnknownKeyException in iOS.
Won't Fix
Last Updated: 28 Sep 2020 08:14 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 1
Category: AutoComplete
Type: Bug Report
0
When the suggestions get recycled, their text and image disappear.
Completed
Last Updated: 26 Feb 2018 10:41 by ADMIN
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.
Completed
Last Updated: 22 Apr 2019 10:45 by ADMIN
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 2
Category: AutoComplete
Type: Bug Report
1
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";
}
Won't Fix
Last Updated: 01 Oct 2020 11:42 by ADMIN
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. 
Declined
Last Updated: 01 Oct 2020 08:25 by ADMIN
Created by: Thorsten
Comments: 11
Category: AutoComplete
Type: Feature Request
8
Currently it is not possible to initialize the tokens of the autocomplete so the UI shows already selected tokens.
This is necessary to use the control for a CREATE/EDIT scenario.

Example:
- Create an event (party) and select all the friends from the autocompelte (another issue is that already selected tokens cannot be removed from the suggestion list)
- Save the event
- Edit the event => now you would need to see the already selected friends so you can add and remove some
Declined
Last Updated: 28 Sep 2020 09:08 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 1
Category: AutoComplete
Type: Feature Request
0
Similar to the UWP AutoCompleteBox functionality - http://docs.telerik.com/windows-universal/controls/radautocompletebox/features/autocompletebox-webservice-support
Declined
Last Updated: 28 Sep 2020 08:22 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 3
Category: AutoComplete
Type: Feature Request
1
Currently users are not aware when a token gets selected/deselected.
Completed
Last Updated: 26 Feb 2018 10:25 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: AutoComplete
Type: Bug Report
0
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.
Completed
Last Updated: 23 Jul 2018 13:11 by Zahid
ADMIN
Created by: Stefan Nenchev
Comments: 3
Category: AutoComplete
Type: Bug Report
1
Avalable in R3 2017 SP release.
Completed
Last Updated: 18 Oct 2017 15:03 by ADMIN
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.
Declined
Last Updated: 28 Sep 2020 09:18 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 1
Category: AutoComplete
Type: Feature Request
0

			
Completed
Last Updated: 21 Jun 2017 11:14 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: AutoComplete
Type: Feature Request
1
Currently the Text property can only be get. Expose it as setter as well.
Completed
Last Updated: 01 Dec 2018 11:14 by Laron Walker
ADMIN
Created by: Pavel R. Pavlov
Comments: 11
Category: AutoComplete
Type: Feature Request
11
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
1 2