jQuery UI Dialog with ASP.NET button postback

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

    $('#divname').parent().appendTo($("form:first"));
    

    Using this code solved my problem and it worked in every browser, Internet Explorer 7, Firefox 3, and Google Chrome. I start to love jQuery... It's a cool framework.

    I have tested with partial render too, exactly what I was looking for. Great!

    
    ...
    ...
    
    ...
    ...
    
    postback test


提交回复
热议问题