I was previously able to achieve a single click dropdown on a GridViewComboBoxColumn with the following code:
Now that I have upgraded to Q2 2008, the ShowDropDown event has disappeared. I do not find any helpful advice within the release notes for Q2 2008.
Is there still a way to accomplish this?
Private Sub RadGridView1_CellEditorInitialized(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.GridViewCellEventArgs) Handles RadGridView1.CellEditorInitialized |
If Not (Me.RadGridView1.ActiveEditor Is Nothing) AndAlso (TypeOf Me.RadGridView1.ActiveEditor Is RadComboBoxEditor) Then |
'CType(Me.RadGridView1.ActiveEditor, RadComboBoxeditor).ShowDropDown |
End If |
End Sub |
Now that I have upgraded to Q2 2008, the ShowDropDown event has disappeared. I do not find any helpful advice within the release notes for Q2 2008.
Is there still a way to accomplish this?