This is a migrated thread and some comments may be shown as answers.

Add Item to Context Menu (Doesnt Work)

1 Answer 88 Views
GridView
This is a migrated thread and some comments may be shown as answers.
bradley baker
Top achievements
Rank 1
bradley baker asked on 01 Mar 2010, 07:03 PM
Im trying to add a custom item to the Context Menu following the example using the Q1 Beta of WinForms

This doesnt add the "Custom Data Operation" to the context menu :(

    Private Sub radGridView1_ContextMenuOpening(ByVal sender As ObjectByVal e As ContextMenuOpeningEventArgs)  
        Dim customMenuItem As RadMenuItem = New RadMenuItem()  
        customMenuItem.Text = "Custom Data Operation" 
 
        Dim separator As RadMenuSeparatorItem = New RadMenuSeparatorItem()  
 
        e.ContextMenu.Items.Add(separator)  
        e.ContextMenu.Items.Add(customMenuItem)  
    End Sub 

1 Answer, 1 is accepted

Sort by
0
Svett
Telerik team
answered on 02 Mar 2010, 08:46 AM
Hi bradley baker,

Thank you for reporting the issue. It will be addressed in the official stable release Q1 2010. In the meantime I cannot give you a temporary solution due to internal changes that need to be done. Let us know if you need further assistance.

All the best,
Svett
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
GridView
Asked by
bradley baker
Top achievements
Rank 1
Answers by
Svett
Telerik team
Share this question
or