jQueryUI autocomplete not working with dialog and zIndex

前端 未结 14 1098
孤独总比滥情好
孤独总比滥情好 2021-02-05 00:51

I ran into an interesting issue with jQueryUI autocomplete in a dialog box.

My dialog HTML looks like this:

14条回答
  •  不思量自难忘°
    2021-02-05 01:05

    Super simple solution. Increase the z-index for the autocomplete. When it is active I am pretty sure you want it on top :)

    .ui-autocomplete {
     z-index: 2000;
    }
    

提交回复
热议问题