jQuery UI Dialog with ASP.NET button postback

前端 未结 17 2050
鱼传尺愫
鱼传尺愫 2020-11-22 14:43

I have a jQuery UI Dialog working great on my ASP.NET page:

jQuery(function() {
    jQuery(\"#dialog\").dialog({
        draggable: true,
        resizable:          


        
17条回答
  •  迷失自我
    2020-11-22 15:08

    The exact solution is;

    $("#dialogDiv").dialog({ other options...,
        open: function (type, data) {
            $(this).parent().appendTo("form");
        }
    });
    

提交回复
热议问题