Completed
Last Updated: 20 Jul 2018 08:09 by Dimitar
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 10 Jul 2018 11:06
Category: MultiColumnCombo
Type: Bug Report
1
FIX. RadMultiColumnComboBox - text is not selected only the first time you click the editable part
To reproduce: run the attached project and refer to the attached gif file.

Workaround:

 this.radMultiColumnComboBox1.MultiColumnComboBoxElement.TextBoxElement.TextBoxItem.TextBoxControl.MouseDown += TextBoxControl_MouseDown;

        private void TextBoxControl_MouseDown(object sender, MouseEventArgs e)
        {
            this.radMultiColumnComboBox1.MultiColumnComboBoxElement.TextBoxElement.TextBoxItem.TextBoxControl.SelectAll();
        }
0 comments