Completed
Last Updated: 10 Oct 2016 14:24 by Alan
When the Populate method is called from the control's GotFocus or PreviewMouseLeftButtonDown events, moving the parent Window does not close it's DropDown.

Available in LIB Version 2016.3.1010, it will be also available in the 2016 R3 SP1.
Completed
Last Updated: 19 Sep 2016 06:38 by ADMIN
Should be clicked somewhere else afterwards in order to refresh the cursor.
The fix is available in R2 2016 SP1.
Completed
Last Updated: 15 Sep 2016 07:26 by ADMIN
Available in the R3 2016 Release.

Please check our help article for more information:
http://docs.telerik.com/devtools/wpf/controls/radautocompletebox/features/key-properties#setting-noresultscontent-noresultscontenttemplate-properties
Completed
Last Updated: 14 Sep 2016 13:09 by ADMIN
Make it possible to display text e.g. "No result" when there are no filtered items. Here is an example of this http://i.stack.imgur.com/HVaxP.png

Available in the R3 2016 Release.

Please check our help article for more information:
http://docs.telerik.com/devtools/wpf/controls/radautocompletebox/features/key-properties#setting-noresultscontent-noresultscontenttemplate-properties
Won't Fix
Last Updated: 18 Aug 2016 08:17 by ADMIN
If there is only one item left in the drop down or it is the first item, when it is clicked with the mouse the events are raised. 
Unplanned
Last Updated: 09 Aug 2016 12:24 by Alexandre
When I type some characters, an item is always selected (generally the first if we don't create an highlightbehavior), but when I delete a character, no item is selected even if the list contains items.
It would be awesome if the behavior of a character removing can be the same than the behavior of the character typing. So I would like, after a charater removing, that an item is always selected when the filtered list contains at least one element.
Thanks for this feature!
Unplanned
Last Updated: 09 Aug 2016 12:24 by ADMIN
Add a possibility to set minimum populate delay to the control. It would be useful if a property like MinimumPopulateDelay is available to be set which would cause the populating of items to be delayed. Such feature would be helpful for cases when making requests to web server etc.
Unplanned
Last Updated: 09 Aug 2016 12:23 by ADMIN
When the drop down portion part of the control is opened and there is a highlighted item when backspace gets pressed the highlighted item is cleared. 
Completed
Last Updated: 08 Aug 2016 14:20 by ADMIN
The documentation for WPF FilteringBehavior.FindMatchingItems, <http://docs.telerik.com/devtools/wpf/api/html/M_Telerik_Windows_Controls_FilteringBehavior_FindMatchingItems.htm>, only tells the type of the parameters.  It does not tell what the parameters do, nor does it tell what the function does.
Completed
Last Updated: 16 Jun 2016 08:05 by ADMIN
Exposed the HandleKeyDown method of RadAutoCompleteBox. In order to navigate to the next control when Tab key is pressed, the method should be overridden as shown below:

public class CustomAutoCompleteBox : RadAutoCompleteBox
{
protected override bool HandleKeyDown(Key systemKey)
{
return base.HandleKeyDown(systemKey) && systemKey != Key.Tab;
}
} 
Available in LIB version 2016.2.525, it will be also available in the 2016 R2 SP1 release.
Completed
Last Updated: 13 Jun 2016 05:58 by ADMIN
ADMIN
Created by: Alek
Comments: 6
Category: AutoCompleteBox
Type: Bug Report
3
When you set TabIndex property the control still uses the default value.

Available in LIB version 2016.1.314, it will be also available in the 2016 Q2 Release.
Completed
Last Updated: 06 Jun 2016 13:21 by ADMIN
After removing an item with it's remove "X" button, two mouse clicks are required in order to lose the focus from the control.

Available in LIB version 2016.2.606, it will be also available in the 2016 R2 SP1 release.
Completed
Last Updated: 30 May 2016 12:09 by ADMIN
ADMIN
Created by: Vladi
Comments: 0
Category: AutoCompleteBox
Type: Bug Report
2
This causes strange behavior where if the control is unloaded and that loaded again the "Text" in the control's TextBox is returned to the cleared item's text.

Available in LIB version 2016.2.530, it will be also available in the 2016 R2 SP1.
Completed
Last Updated: 25 May 2016 14:42 by ADMIN
Declined
Last Updated: 12 May 2016 13:39 by ADMIN
1. RadAutoCompleteBox with an ObservableCollection set to its ItemsSource

2. The ObservableCollection is populated on the server side once the SearchText of the control changes.

3. The drop down part of the control closes itself even If there are filtered items.
Completed
Last Updated: 08 Feb 2016 15:49 by ADMIN
No items are returned by the AsyncFilteringBehavior if the ItemsSource contains objects of a nested class.
For example the ItemsSource is bound to a "List<Item>" collection and the "Item" class is declared inside a different class (nested classes).

Available in LIB version 2016.1.208, it will be also available in the 2016 Q1 SP1 Release.
Completed
Last Updated: 22 Jan 2016 07:44 by ADMIN
Completed
Last Updated: 22 Jan 2016 07:43 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: AutoCompleteBox
Type: Bug Report
4
AutoCompleteBox cannot be focused on the page load.
Completed
Last Updated: 07 Jul 2015 08:39 by Brandon
If the SelectedItem is initially bound to an object and Tab focus passed through the control the text in it disappears.