Unplanned
Last Updated: 19 Jun 2017 11:17 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 14 Jun 2017 06:21
Category: MultiColumnCombo
Type: Bug Report
1
FIX. RadMultiColumnComboBox - filtered rows are still not visible when clearing the text while keeping the Backspace key pressed
To reproduce:
Type "Th" into the multi-column combo box in the attached project.  Then press and hold the Backspace key until "Th" is deleted.  Then release Backspace key.  There remain only the filtered options in the dropdown.
If I press and release the backspace key 1x for each typed letter, then the dropdown repopulates as expected.

Workaround: 
 private void radMultiColumnComboBox1_TextChanged(object sender, EventArgs e)
        {
            this.radMultiColumnComboBox1.MultiColumnComboBoxElement.ApplyFilter();
        }
0 comments