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
80
Contextmenu loads under my igGrid (sample included)
posted

I'm using the contextmenu jquery plugin, as suggested at post: http://es.infragistics.com/community/forums/t/89192.aspx

The issue I'm having is the menu is loading under the igGrid. I've been unable to correct this and need help to determine what's the problem. Thanks for any help.

My code is attached.

Parents
No Data
Reply
  • 5513
    Offline posted

    Hello,

    In more recent versions of Ignite UI the scroll container of the grid has a z-index of 1. This means that the context menu should  have a higher one to be displayed on top of it. Please, try adding the following CSS rule to your sample page:

    ul[role='menu'] {
       z-index: 2;
      }

    It should solve the issue. Thank you for using Infragistics forums!

    Best regards,

    Stamen Stoychev

Children