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
1390
Grid column chooser is positioned behind JQuery Dialog
posted

Hi, I have a grid control inside a JQuery UI dialog, when opening the column chooser; it's positioned behind the dialog and is not accessible. Can you please suggest any way I can resolve this issue.

Thanks in advance.

Regards Chrisotff

 

  • 6279
    posted

    Hi Chrisotff,

    I've created a public bug about this case (yes, Miroslav is in on it :)).

    Here is the number of the case that has been opened about this:

    CAS-87898-XPDRKW

     

    We will send you a notification as soon as the case (and bug) as resolved and there's a public build which you can download in order to receive the fix.

     

    If you have any other trouble or questions, please let us know.

     

    Cheers,

    Bobby

  • 1800
    posted

    Hy christoffelleroux,

    This is public bug and we will fix it soon. So for now I can propose you workaround. For instance you can bind to grid event rendered and to set higher zIndex for dialogs:

    Here is code snippet:

     $('#grid').igGrid({

    ...

    rendered: function (e, ui)  {

     

    $(

     

    '.ui-iggrid-featurechooser-dropdown-dialog').css({zIndex: 10000});

    $(

     

    '.ui-iggrid-dialog').css({zIndex: 10000});

     

     

    }

    ...

    });

    Thanks,

    Miro Hristov