Selectize hides behind the form

Selectize hides behind the form

dmryzhkovdmryzhkov Posts: 8Questions: 3Answers: 0

Hi! My selectize list hides behind the form when I open the "edit" or "create" commands. Please advise where I can fix it. The code is copied from the selectize example and in inline editind works fine.

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 63,871Questions: 1Answers: 10,522 Site admin
    Answer ✓

    Hi,

    It looks like a z-index issue. Try adding:

    div.selectize-dropdown {
            z-index: 2001;
        }
    

    to your CSS.

    Allan

  • dmryzhkovdmryzhkov Posts: 8Questions: 3Answers: 0

    Thank you, man!

This discussion has been closed.