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

RadContextMenu, Parent disappear

3 Answers 52 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Mathieu Roy
Top achievements
Rank 1
Mathieu Roy asked on 13 Jul 2009, 02:07 PM
Hi,

I've got a problem when I create new menu on right mouse click. When user click on childs elements, parent menu item disappear. Here is the code we use to show what happen: 

 

 

 

Private Sub RadGridView1_ContextMenuOpening(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.ContextMenuOpeningEventArgs) Handles RadGridView1.ContextMenuOpening

 

 

Dim root As New RadContextMenu

 

 

Dim level1 As New RadMenuItem("Level 1")

 

 

Dim level2 As New RadMenuItem("Level 2")

 

 

Dim level3 As New RadMenuItem("Level 3")

 

level2.Items.Add(level3)

level1.Items.Add(level2)

root.Items.Add(level1)

e.ContextMenu = root.DropDown

 

End Sub

When menu appear, simply hover mouse on Level 1, then level 2 appear, when you hover on level 2, level 1 disappear. I wanna keep all level visible at all time, how can I change behavior to respect that?

Thx

 

3 Answers, 1 is accepted

Sort by
0
Jack
Telerik team
answered on 15 Jul 2009, 02:51 PM
Hi Mathieu Roy,

This issue is addressed in our latest release - Q2 2009. I recommend that you try it out and send us your feedback. If you have any questions, don't hesitate to contact us.
 

Sincerely yours,
Jack
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Mathieu Roy
Top achievements
Rank 1
answered on 07 Oct 2009, 06:33 PM
Finally we have install the new version which is the release - Q2 2009 and the problem is gone.

Thx!
0
Jack
Telerik team
answered on 08 Oct 2009, 08:54 AM
Hi Mathieu,

I am glad to hear that the issue is resolved now. If you need any assistance, please don't hesitate to write us.

All the best,
Jack
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
GridView
Asked by
Mathieu Roy
Top achievements
Rank 1
Answers by
Jack
Telerik team
Mathieu Roy
Top achievements
Rank 1
Share this question
or