Unplanned
Last Updated: 27 Oct 2023 14:53 by Stenly
We could include an option for the RadMultiColumnComboBox to behave similarly to an editable and read-only RadComboBox.
Unplanned
Last Updated: 28 Aug 2023 15:16 by ADMIN
Currently, when a RadMultiColumnComboBox is placed in a ScrollViewer, the inner ScrollViewer of RadMultiColumnComboBox prevents the parent one from scrolling via the mouse wheel.

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);
	}
}
Unplanned
Last Updated: 25 Aug 2023 20:52 by Martin Ivanov
Currently, when DataContext of RadMultiColumnComboBox changes to an object that contains valid SelectedItem and ItemsSource view model properties, the SelectedItem get set to null. This happens because the control resets the selection on ItemsSource changed, which happens after the SelectedItem binding was evaluated. 

Add an option to ensure that the SelectedItem won't get reset after the binding was evaluated  because of the ItemsSource changed action. The behavior should mimic how RadComboBox behaves in this scenario.
Completed
Last Updated: 26 Nov 2020 14:40 by ADMIN
Release R3 2020 SP1
Created by: Dinko
Comments: 0
Category: MultiColumnComboBox
Type: Feature Request
0
We can expose a way to select the text of the selected item when the MCCB is focused.
Completed
Last Updated: 02 Sep 2020 10:54 by ADMIN
Release R3 2020
RadGridView columns expose a IsSearchable property that is not taken into account when you use RadMultiColumnComboBox and search via the autocomplete box. Add support for the property. If set to False, the searching should not find the corresponding column.
Unplanned
Last Updated: 28 Aug 2020 10:59 by ADMIN
Created by: Mats
Comments: 0
Category: MultiColumnComboBox
Type: Feature Request
4

Remove the possibility for one or more rows to be searched on.

In other words, it should not be possible to select disabled item rows by search.

Completed
Last Updated: 16 Jun 2020 12:59 by ADMIN
Release R2 2020 SP
Created by: Franz
Comments: 0
Category: MultiColumnComboBox
Type: Feature Request
3
The selection is lost when sorting or filtering is applied and the control is already filtered.
Unplanned
Last Updated: 05 Jun 2020 11:48 by ADMIN
Currently the search text is cleared after a selection is made in the RadMultiColumnComboBox. We can provide an option to avoid this and keep the entered text after the selection is made. 
Unplanned
Last Updated: 10 Feb 2020 09:16 by ADMIN
Created by: Franz
Comments: 1
Category: MultiColumnComboBox
Type: Feature Request
3

It would be usefull to have a Property on the RadMultiColumnComboBox which represents the inputted searchtext. This Property should be TwoWay-Bindable.

A usecase for it could be to programmatically manipulate the searchtext.
For example setting it to NULL on LostFocus:

private void mccb_LostFocus(object sender, RoutedEventArgs e)
{
    this.mccb.ChildrenOfType<RadWatermarkTextBox>().First().Text = string.Empty;
}

Instead of hacking around with the visualTree etc. one could simply bind the property. This would also be MVVM compliant.

Proposed Name for the Property "SearchText".

Unplanned
Last Updated: 27 Sep 2019 15:47 by ADMIN
Created by: Michael
Comments: 0
Category: MultiColumnComboBox
Type: Feature Request
2
Add grouping support in the GridView element.
Completed
Last Updated: 22 Jul 2019 06:02 by ADMIN
Created by: Tino
Comments: 3
Category: MultiColumnComboBox
Type: Feature Request
1
Add option to hide row indicator in grid.
Completed
Last Updated: 07 May 2019 09:57 by ADMIN
Release R2 2019
Unplanned
Last Updated: 03 Apr 2019 08:36 by ADMIN
Create API which can change the selected item when only using the Up/Down keys of the keyboard.
Declined
Last Updated: 22 Mar 2019 12:49 by ADMIN
Created by: Stefan
Comments: 1
Category: MultiColumnComboBox
Type: Feature Request
0
the multicolumncombobox has this weird display with X buttons which is completely inconsistent with a combo box.  Potentially make sense when you are multi-selecting but single select I would like to operate in the same way as a rad combo box so the user doesn't see any difference.
Unplanned
Last Updated: 18 Mar 2019 12:17 by ADMIN
Created by: Huan jia
Comments: 0
Category: MultiColumnComboBox
Type: Feature Request
4
 Expose DropDownOpened and DropDownClosed events similarly to the RadComboBox control.
Unplanned
Last Updated: 07 Mar 2019 09:32 by ADMIN

The RadMultiColumnComboBox has a separate keyboard functionality executed when the watermark textbox (the search box) is focused and the dropdown is open. Basically, you can navigate through the rows of the gridview part and select them using the keyboard. 

Currently, this functionality is private. Introduce an API that allows you to customize the keyboard navigation. Consider something similar to the KeyboardCommandProvider of RadGridView.

Completed
Last Updated: 15 Feb 2019 12:49 by Hans
Created by: Hans
Comments: 2
Category: MultiColumnComboBox
Type: Feature Request
3
Expose a property to enable styling of the drop down element of MultiColumnComboBox. It the default scenario this is RadGridView.

Currently, an implicit style targeting RadGridView can be used instead.
Declined
Last Updated: 22 Jan 2019 14:33 by ADMIN
Created by: Stefan
Comments: 2
Category: MultiColumnComboBox
Type: Feature Request
1

the display of the drop-down part of the multicolumncombobox is different from the RAD combo box. There is an extra line between the content of the combo box and the drop-down button in the office 2016 theme at least. This should not be there to be consistent with the other combo boxes.

Stefan

Unplanned
Last Updated: 14 Dec 2018 17:22 by ADMIN

Hello,

 

Add non-editable feature to MultiColumnComboBox ( like on ComboBox ).

 

Thx,

Tino.

 

 

Unplanned
Last Updated: 14 Dec 2018 17:20 by ADMIN
Created by: Tino
Comments: 0
Category: MultiColumnComboBox
Type: Feature Request
3
Add a button that allows you to clear all the selected items.