jQuery UI Dialog with ASP.NET button postback

前端 未结 17 1886
鱼传尺愫
鱼传尺愫 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:14

    FWIW, the form:first technique didn't work for me.

    However, the technique in that blog article did:

    http://blog.roonga.com.au/2009/07/using-jquery-ui-dialog-with-aspnet-and.html

    Specifically, adding this to the dialog declaration:

      open: function(type,data) {
        $(this).parent().appendTo("form");
      }
    

提交回复
热议问题