What I'm trying to do is to drop down a ComboBox when the cell has focus, removes a click. I hooked the CellEditorInitialized with the code below to get the RadComboBoxElement and call ShowPopup. It does not show the Popup (dropdown) and in fact stops the dropdown from even happening (i.e. the dropdown arrow does nothing).
Not sure what I'm doing wrong here.....
Using Q2 09 release
Private Sub dgSALCellEditorInitialized(ByVal sender As System.Object, ByVal e As Telerik.WinControls.UI.GridViewCellEventArgs) Handles RadGridView_SAL.CellEditorInitialized
Not sure what I'm doing wrong here.....
Using Q2 09 release
Private Sub dgSALCellEditorInitialized(ByVal sender As System.Object, ByVal e As Telerik.WinControls.UI.GridViewCellEventArgs) Handles RadGridView_SAL.CellEditorInitialized
If (Me.RadGridView_SAL.ActiveEditor IsNot Nothing) AndAlso (TypeOf Me.RadGridView_SAL.ActiveEditor Is RadComboBoxEditor) Then
Dim editor As RadComboBoxEditor = TryCast(Me.RadGridView_SAL.ActiveEditor, RadComboBoxEditor)
If Not editor Is Nothing Then
Dim element As RadComboBoxElement = TryCast(editor.EditorElement, RadComboBoxElement)
element.ShowPopup()
End If
End If