Completed
Last Updated: 24 Sep 2024 07:21 by ADMIN
Release 2024.3.806 (2024 Q3)

When the SelectionMode of RadAutoCompleteBox is changed, the search text is cleared. However, this clears only the Text property of the underlying TextBox element. The SearchText property of the control is not cleared.

To work this around, you can manually set the SearchText after setting the SelectionMode.
this.autoCompleteBox.SelectionMode = AutoCompleteSelectionMode.Multiple;
this.autoCompleteBox.SearchText = null;

Unplanned
Last Updated: 03 Jan 2017 21:20 by ADMIN
Completed
Last Updated: 12 Nov 2018 07:32 by ADMIN
ADMIN
Created by: Kalin
Comments: 1
Category: AutoCompleteBox
Type: Feature Request
1

			
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: 17 Oct 2016 15:04 by ADMIN
Available in LIB version 2016.3.1017, it will be also available in the 2016 R3 SP1 release. 
Completed
Last Updated: 20 Jul 2018 07:30 by ADMIN
Unplanned
Last Updated: 13 Apr 2018 07:22 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: AutoCompleteBox
Type: Bug Report
1
The current workaround is to directly set the value of the underlying TextBox instead:

this.RadAutoCompleteBox.ChildrenOfType<TextBox>().First().Text = "1 I";
Declined
Last Updated: 04 Oct 2018 09:48 by ADMIN
The workaround is to set String.Empty for TextSearchPath before setting the new value for the DisplayMemberPath
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: 29 Nov 2021 11:30 by ADMIN
Release LIB 2021.3.1129 (29 Nov 2021)
When selecting an item from the drop-down menu, scrollviewer's position is not changed when the menu is opened again.
Won't Fix
Last Updated: 20 Dec 2021 15:51 by Stenly
When clicking the remove button on an item, which is present more than once in the selection textbox, the first occurrence will be removed, rather than the corresponding item.
Completed
Last Updated: 11 Sep 2023 10:25 by ADMIN
Release LIB 2023.2.918 (18 Sep 2023)
NullReferenceException in AppendModeBase.SetTextForHighlightedItem when the value of DisplayMemberPath is null.
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: 09 Dec 2016 07:42 by ADMIN
Clicking the ScrollViewer of the control causes the focus to be retained by the RadAutoCompleteBox, leading to double mouse click required in order to access outside control.

Also the mouse cursor is changed IBeam value rather than the default Arrow value.

The fix is available in the 2016 R3 SP1 release.
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.
Declined
Last Updated: 03 Oct 2014 07:50 by ADMIN
Unplanned
Last Updated: 07 Nov 2017 08:33 by ADMIN
When you start typing, the dropdown appears and then you leave the AutoCompleteBox without clicking, the cursor is not changing back to arrow.

As a workaround of the issue you could manually release the mouse capture in the Populated event handler of the control as shown below:


 private void AutoCompleteBox_Populated(object sender, System.EventArgs e)
        {
            if (Mouse.Captured is RadAutoCompleteBox)
            {
                (sender as RadAutoCompleteBox).ReleaseMouseCapture();
            }
        }
Unplanned
Last Updated: 17 Oct 2017 07:46 by ADMIN
Unplanned
Last Updated: 03 Jan 2017 21:09 by ADMIN
In Multiple SelectionMode it would be useful to be able to customize the way selected items (boxes) are displayed. Customizing their looks via a StyleSelector would be optimal.