Unplanned
Last Updated: 30 Mar 2016 09:31 by Svetlin
Svetlin
Created on: 13 Jul 2012 09:58
Category: MultiColumnCombo
Type: Bug Report
2
FIX. RadMultiColumnComboBox - when filtering is applied to RadMultiColumnComboBox editor in CellEditorInitialized event of RadGridView, the selected item is the second one.
When filtering is applied to RadMultiColumnComboBox editor in CellEditorInitialized event of RadGridView, the selected item is second one, if the new row is edited.

Workaround: change the event handler by adding the following lines of code in the end of the RadGridView1_CellEditorInitialized:

Dim value As Object = e.Row.Cells(e.ColumnIndex).Value
 
If value Is Nothing Then
    editor.EditorControl.CurrentRow = Nothing
Else
    editor.Value = e.Row.Cells(e.ColumnIndex).Value
End If
0 comments