jQuery UI Widgets Forums Lists ComboBox Change combobox z-index

This topic contains 2 replies, has 2 voices, and was last updated by  mesken 10 years, 10 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
  • Change combobox z-index #52542

    mesken
    Participant

    Hi Team,

    please how can I change Combobox z-index ? I have a DIV that shows on top of all elements whith a high z-index on which I placed a Combox box, but when I click the dropdown button, the list appears behind the DIV. Is there any workaround ?

    Thanks

    Change combobox z-index #52545

    Dimitar
    Participant

    Hello mesken,

    There are 2 possible solutions.

    1. Use a property: http://jsfiddle.net/jqwidgets/R6bqL/

    2. You can add the following style to your page to increase the pop-up’s z-index:

    <style type="text/css">
        .jqx-popup.jqx-listbox
        {
            z-index: 999999 !important;
        }
    </style>

    Note, however, that this will increase the z-index of all other combobox pop-ups. Unfortunately, their ids are automatically generated and not easily selectable.

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/

    Change combobox z-index #52589

    mesken
    Participant

    OK, thank you. It works well

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.