jQueryUI autocomplete not working with dialog and zIndex

前端 未结 14 1123
孤独总比滥情好
孤独总比滥情好 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条回答
  •  旧时难觅i
    2021-02-05 01:11

    What worked for me was a combination of the post above. I added the myModal ID instead of body and added the close event as well.

    $("selector").autocomplete({
        ...
        appendTo: "#myModalId",    // <-- do this
        close: function (event, ui){
            $(this).autocomplete("option","appendTo","#myModalId");  // <-- and do this  
        }
    }); 
    

提交回复
热议问题