Unplanned
Last Updated: 30 Mar 2016 09:19 by ADMIN
ADMIN
Anton
Created on: 20 Nov 2012 05:24
Category: MultiColumnCombo
Type: Bug Report
1
FIX. RadMultiColumnDropDown - set the SelectedIndex property in the DropDownClosed event not working
When set the SelectedIndex property in the DropDownClosed event selected index is not set correctly.  

Workaround:
private void radMultiColumnComboBox1_DropDownClosed(object sender, Telerik.WinControls.UI.RadPopupClosedEventArgs args) 

{

this.radMultiColumnComboBox1.SelectedIndex = 0; 

this.radMultiColumnComboBox1.EditorControl.CurrentRowChanging += new CurrentRowChangingEventHandler(EditorControl_CurrentRowChanging); 

}

void EditorControl_CurrentRowChanging(object sender, CurrentRowChangingEventArgs e) 

{

e.Cancel = true; 

this.radMultiColumnComboBox1.EditorControl.CurrentRowChanging -= EditorControl_CurrentRowChanging; 

} 
0 comments