Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
240
ContextMenu displayed when covered by ChildWindow
posted

I am displaying a control that inherits from ChildWindow after an item is selected from a XamWebContextMenu.  Althought the ChildWindow displays correctly overlayed on top of the page containing the XamWebGrid, the context menu still pops up when the ChildWindow is right-clicked.  Is there something I'm missing that I need to do such as disable the parent control with the grid?  Thanks in advance for any help you can provide.  Please see my ContextMenu below:

<igMenu:ContextMenuService.Manager>

 

 

 

 

 

 

 

<igMenu:ContextMenuManager x:Name="contextMenuManager" OpenMode="RightClick" ModifierKeys="None">

 

 

 

 

<igMenu:ContextMenuManager.ContextMenu>

 

 

 

 

<igMenu:XamWebContextMenu>

 

 

 

 

 

 

 

 

 

 

<igMenu:XamWebMenuItem Tag="OpenItem" Header="Open Item" Click="XamWebMenuItem_Click" />

 

 

 

 

 

 

 

 

 

<igMenu:XamWebMenuItem Tag="Refresh" Header="Refresh" Click="XamWebMenuItem_Click" />

 

 

 

 

</igMenu:XamWebContextMenu>

 

 

 

 

</igMenu:ContextMenuManager.ContextMenu>

 

 

 

 

</igMenu:ContextMenuManager>

 

 

 

 

</igMenu:ContextMenuService.Manager>

 

Parents
No Data
Reply
  • 240
    posted

    Update: I've played some more with this, and it only seems to happen when I double-click a row and open the item for that row in the ChildWindow control.  When I go through the context menu, then it doesn't display the context menu on the ChildWindow right-click ... the context menu seems to suppress itself or something in that case.

    What should I do about this?

Children