Completed
Last Updated: 28 May 2015 07:01 by ADMIN
ADMIN
Paul
Created on: 02 Aug 2013 12:13
Category: GridView
Type: Bug Report
1
FIX. RadGridView - if FilteringMode is set to DisplayMember and one clicks in the ComboBoxColumn cell, the actual cell value goes blank.
RadGridView If FilteringMode is set to DisplayMember if one clicks in the ComboBoxColumn cell; the actual cell value goes blank. If FilteringMode is set to ValueMember the ComboBoxColumn behaves as expected.

Workaround:
Private Sub RadGridView1_CellEditorInitialized(sender As Object, e As GridViewCellEventArgs) Handles RadGridView1.CellEditorInitialized
    If e.ActiveEditor.GetType() Is GetType(RadDropDownListEditor) Then
        e.ActiveEditor.Value = e.Value
    End If
End Sub
0 comments