Completed
Last Updated: 20 Feb 2014 15:22 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 09 Dec 2013 01:31
Category: MultiColumnCombo
Type: Bug Report
0
FIX. NullReferenceException in RadMultiColumnCombo after SelectionChanged
To reproduce:
- add a RadMultiColumnCombo and bind it to fill with data. Use the following code:

this.radMultiColumnComboBox1.EditorControl.SelectionChanged+=EditorControl_SelectionChanged;

private void EditorControl_SelectionChanged(object sender, EventArgs e)
{
    radMultiColumnComboBox1.SelectedIndex = -1;
}

After selecting a new row from the drop down grid, NullReferenceException is thrown.
0 comments