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!
Declined
Last Updated: 07 Mar 2014 13:53 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: AutoCompleteBox
Type: Feature Request
3
Make it possible to override the functionality of keystrokes in the control. A useful case is when placing the control inside RadGridView's CellEditTemplate and wanting to leave cell editing mode by pressing the escape keyboard key.
Completed
Last Updated: 17 Oct 2016 14:58 by ADMIN
When the SelectedItems property is bound, moving items inside that collection causes ArgumentException.

Available in LIB version 2016.3.1017, it will be also available in the 2016 R3 SP1 release. 
Completed
Last Updated: 18 Mar 2014 09:10 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: AutoCompleteBox
Type: Bug Report
3
Esc should be handled only when the popup is opened.
Unplanned
Last Updated: 02 Aug 2022 11:38 by ADMIN
Created by: Vladimir
Comments: 2
Category: AutoCompleteBox
Type: Feature Request
3

Please add a simple way to show "Clear all" button in a MultiSelect mode to clear all selected items, so we don't have to customize entire control template. Added properties could be at least those: IsClearAllButtonVisible and ClearAllButtonTemplate.

 

Best regards,

Vladimir

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. 
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.
Unplanned
Last Updated: 22 Sep 2020 12:12 by ADMIN

Currently, if you wrap RadAutoCompleteBox in a ScrollViewer (along with some other controls) and enable the vertical scrollbar of the child TextBox control, the scrolling doesn't bubble to the parent ScrollViewer when you reach the beginning (scroll up) or the end (scroll down) of the TextBox scrollbar.

Add an option or change the default behavior and allow the scrolling to bubble to the parent scrollbar. This behavior can be observed in the native TextBox control with an enabled vertical scrollbar.

For the time being, the MouseWheel event can be manually raised:

private void ScrollViewer_PreviewMouseWheel(object sender, MouseWheelEventArgs e)
{
	if (sender is ListBox && !e.Handled)
        {
		e.Handled = true;
		var eventArg = new MouseWheelEventArgs(e.MouseDevice, e.Timestamp, e.Delta);
		eventArg.RoutedEvent = UIElement.MouseWheelEvent;
		eventArg.Source = sender;
		var parent = ((Control)sender).Parent as UIElement;
		parent.RaiseEvent(eventArg);
	}
}

Completed
Last Updated: 25 May 2016 14:42 by ADMIN
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. 
Unplanned
Last Updated: 30 Mar 2021 13:47 by ADMIN
Created by: Simon
Comments: 6
Category: AutoCompleteBox
Type: Feature Request
2

Hi,

under certain circumstances, RadAutoCompleteBoxes (at least in the "SuggestAppend" mode)  have a discrepancy between what is displayed and what is actually selected/in their SearchText property.

Steps to reproduce:

- Execute the attached project

- Focus the AutoCompleteBox on the top left.

- type the number zero (0) (for demo purposes, all items have names that look like 00001, 00002, 00004, ...)

- You should now see the Dropdown opening and the suggestion mechanism beginning to suggest the first item in the list. You should also see that the SearchText property that is bound to ViewModel contains the single zero you just typed. The selected item is still NULL as expected.

- Now, instead of typing anything else, click out of the AutoCompleteBox and focus another control (I added the WatermarkBox on the right side to allow for that)

- This is the point where the discrepancy occurs: The viewmodel still only sees the zero you typed and no item is selected. BUT: the AutoCompleteBox now shows the full item name as if it was selected correctly, see the attached screenshot.

As a user who does not have the controls on the right side to show me what is actually happening under the hood, I have no chance of knowing what is actually selected (and if anything is selected at all). To me it looks like the AutoCompleteBox just selected the first item for me. If this is what I wanted, I would have no reason to think that nothing is actually selected.

Since the ViewModel does not know anything about the additional text that is displayed, I (now as the programmer) have afaik no chance to add a workaround that selects the corresponding item when the control loses focus.

 

What I think it should look like:

There are two possibilities:

1. As soon as the control loses focus, the suggestion should disappear, leaving me with a single zero in the text box and nothing selected.

2. There could be a second property where I can bind to the full text in the textbox (including the suggestion) so I as the programmer can decide what to do with the suggestion once the control loses focus.

 

Best regards

Simon Müller

Hofmann Fördertechnik GmbH

 

PS.: If you click back into the AutoCompleteBox after defocusing it, you can then actually edit the suggestion as if it was text you inserted in the first place. But only after your first key press, the ViewModel is updated to the full string that is displayed in the textbox.

Unplanned
Last Updated: 24 Feb 2020 10:15 by ADMIN
Created by: Ed
Comments: 1
Category: AutoCompleteBox
Type: Feature Request
2

Hello,

Did some reading and didn't see a way to do this but I am wondering with the RadAutoCompleteBox is it possible to select multiple suggestions at the same time?

Looking at  https://docs.telerik.com/devtools/wpf/controls/radautocompletebox/overview for example the picture shows "United Kingdom" and "United States". Is there a way for the user to select both "United Kingdom" and "United States" either with a checkbox or a shift-click or some other mechanism?

The use case is as follows: the RadAutoCompleteBox is tied to a search algorithm that can be a bit slow at times and will return many records. Would be handy for the user to just click all the suggestions they want instead of researching each time.

Unplanned
Last Updated: 18 Mar 2019 02:39 by ADMIN
Created by: Hillin
Comments: 0
Category: AutoCompleteBox
Type: Feature Request
2
 
Unplanned
Last Updated: 27 Jul 2018 13:10 by Patrick
Similar to BoxesItemTemplate when SelectionMode=Multiple.
Perhaps switch between modes of text entry and SelectedItemTemplate. This would allow a custom display of the selected item and the ability to re-enter search by text mode. It might be nice if the type search text stayed so if you mis select- simply clicking the search text would get the user back to the same filtered list pre-mis-select.
Unplanned
Last Updated: 07 Apr 2023 14:18 by ADMIN
The default behavior when the focus is inside an input control and it's Text is changed is that it's caret is placed in the beginning of the next text. This could be observed in the WPF TextBox control.

In certain scenarios modifying the SearchText while the focus is inside the control is a desired behavior. In those scenarios the caret position is expected to be set to the end of the new text which is set to the SearchText property.
Completed
Last Updated: 06 Nov 2014 12:04 by ADMIN
Unplanned
Last Updated: 22 May 2018 07:38 by ADMIN
Steps to reproduce:
1. Run the attached sample application 
2. Enter the value that is not on the list of autocomplete values.
3. The RadAutoCompleteBoxAutomationPeer.Value return null, because the value is not included in SelectedItems collection

If the entered value is included in the list, the RadAutoCompleteBoxAutomationPeer.Value contains a comma (',') in single selection mode.

Workaround: 
1. The first approach is getting the value from nested watermark text box 
2. Another approach is creating own AutomatomationPeer that getting the value from SearchText 
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.
Unplanned
Last Updated: 03 Jan 2017 20:42 by ADMIN
e.g. AutoCompleteBox is in SelectionMode="Single" has 3 items - "Item 1", "Item 2", "Item 3"When the user enters "Item 1" with keyboard, the control should select this item.
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.