Completed
Last Updated: 08 Apr 2019 16:26 by ADMIN
Release R2 2019 (LIB 2019.1.415)
Completed
Last Updated: 10 Oct 2014 07:44 by ADMIN
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.
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.