Unplanned
Last Updated: 30 Mar 2016 09:33 by ADMIN
ADMIN
Dimitar
Created on: 31 Aug 2015 10:49
Category: MultiColumnCombo
Type: Bug Report
0
FIX. RadMultiColumnComboBox - the value and the text are not synchronized when the drop down is closed.
To reproduce:
- Bind the control and set the auto filter functionality.
- Type a value and press the tab key or click ouside of the control.
- Subscribe to the DropDownClosed event and observe that the SelectedValue and the text are different.

Workaround:
void radMultiColumnComboBox1_DropDownClosed(object sender, Telerik.WinControls.UI.RadPopupClosedEventArgs args)
{
    this.radMultiColumnComboBox1.Text = this.radMultiColumnComboBox1.SelectedValue.ToString();
}

0 comments