Declined
Last Updated: 19 Aug 2021 09:01 by ADMIN
Created by: Dave
Comments: 4
Category: MultiColumnCombo
Type: Feature Request
1

Any chance for an updated MCCB with EL like the new Textboxes?

Thanks,

_D

Completed
Last Updated: 08 Apr 2019 16:26 by ADMIN
Release R2 2019 (LIB 2019.1.415)
Unplanned
Last Updated: 08 Nov 2016 14:33 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: MultiColumnCombo
Type: Feature Request
1
When you enable the popup sizing functionality, the last user defined size by the sizing grip should be kept.
Completed
Last Updated: 10 Oct 2014 07:44 by ADMIN
Unplanned
Last Updated: 15 Aug 2017 09:38 by ADMIN
Currently, in RadMultiColumnComboBox, if you AutoFilter by all columns and you type a value that resides in the ID column, while the DisplayMember is the Name, pressing the Enter after typing the ID will return the Name in the textbox part which may be confusing to the user. Such a case may be solved by introducing another textbox in the drop-down part just for filtering purposes.
Completed
Last Updated: 23 Jun 2014 14:32 by ADMIN
Currently you can filter in RadMultiColumnComboBox only by setting the AutoFilter property.

Resolution: You can use the CompositeFilterDescriptors in RadMultiColumnComboBox and filter two or more columns. Please take a look at the code snippet: 
            this.radMultiColumnComboBox1.DisplayMember = "City";
            this.radMultiColumnComboBox1.AutoFilter = true;
            FilterDescriptor descriptor = new FilterDescriptor(this.radMultiColumnComboBox1.DisplayMember, FilterOperator.StartsWith, "Lo"); //first column
            FilterDescriptor descriptor2 = new FilterDescriptor("ContactName", FilterOperator.StartsWith, "Pe"); //second columns 
            CompositeFilterDescriptor compositeFilter = new CompositeFilterDescriptor();            
            compositeFilter.FilterDescriptors.Add(descriptor);
            compositeFilter.FilterDescriptors.Add(descriptor2);
            compositeFilter.LogicalOperator = FilterLogicalOperator.Or; //OR between these columns
            this.radMultiColumnComboBox1.EditorControl.FilterDescriptors.Add(compositeFilter);
Completed
Last Updated: 20 Oct 2014 12:11 by ADMIN
Currently RadMultiColumnComboBox closes immediately when clicking on a  checkbox cell and does not allow changing its value.
Completed
Last Updated: 05 Jan 2017 06:46 by ADMIN
ADMIN
Created by: Jack
Comments: 5
Category: MultiColumnCombo
Type: Feature Request
10
Currently it is not possible to select multiple rows in RadMultiColumnComboBox.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Currently RadMultiColumnComboBox uses exact comparison and it is not possible to change this behavior.
Completed
Last Updated: 29 Jul 2016 13:58 by ADMIN
Currently there is not support for simple binding for this property.
Completed
Last Updated: 01 Oct 2018 12:44 by Jesse Dyck
ADD. RadMultiColumnComboBox - add ability to display focus cues when DropDownStyle = DropDownList
Completed
Last Updated: 11 Feb 2014 13:27 by Jesse Dyck
RadMultiColumnComboBox should support suggest and suggest-append auto-complete modes when AutoFiltering is enabled.
Completed
Last Updated: 15 Feb 2014 11:02 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: MultiColumnCombo
Type: Feature Request
3
Currently it is not possible to change the behavior of RadMultiColumnComboBox when using the AutoFilter mode. Check ticket ID 420127 for details.
Completed
Last Updated: 20 Dec 2013 13:25 by Jesse Dyck
ADMIN
Created by: Boryana
Comments: 5
Category: MultiColumnCombo
Type: Feature Request
45
This feature request refers to implementation of an AutoComplete mode for RadMultiColumnComboBox.
Completed
Last Updated: 19 Jan 2010 11:25 by ADMIN
radMultiColumnComboBox €“ set AutoFilter to be true and apply filter to radMultiColumnComboBox. Apply the filter in this way so no result is displayed in the drop down. Try to open the drop down and you will see that you cannot.