Completed
Last Updated: 16 Nov 2015 13:39 by ADMIN
ADMIN
Dimitar
Created on: 06 May 2015 10:23
Category: MultiColumnCombo
Type: Bug Report
1
FIX. RadMultiColumnComboBox - NullReferenceException when an item is removed from the data source and the are no selected rows.
To reproduce:
- Bind the control to a binding list.
- Add and then remove items at runtime.


Workaround:
radMultiColumnComboBox1.EditorControl.BeginUpdate();

list.RemoveAt(0);

radMultiColumnComboBox1.EditorControl.EndUpdate();
0 comments