JQuery UI Dialog with Asp .NET button postback.. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T00:32:08Z http://stackoverflow.com/feeds/question/757232 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback 13 JQuery UI Dialog with Asp .NET button postback.. Paul 2009-04-16T17:36:41Z 2009-11-13T11:17:23Z <p>Hello ... I have a JQuery UI Dialog working great on my Asp .NET page:</p> <pre><code>jQuery(function() { jQuery("#dialog").dialog({ draggable: true, resizable: true, show: 'Transfer', hide: 'Transfer', width: 320, autoOpen: false, minHeight: 10, minwidth: 10 }); }); jQuery(document).ready(function() { jQuery("#button_id").click(function(e) { jQuery('#dialog').dialog('option', 'position', [e.pageX + 10, e.pageY + 10]); jQuery('#dialog').dialog('open'); }); }) </code></pre> <p>My div:</p> <pre><code>&lt;div id="dialog" style="text-align: left;display: none;"&gt; &lt;asp:Button ID="btnButton" runat="server" Text="Button" onclick="btnButton_Click" /&gt; &lt;/div&gt; </code></pre> <p>But the btnButton_Click is never called... How can I solve that?</p> <p>Thanks</p> <p>More Info : I added this code to move div to form :</p> <pre><code>jQuery("#dialog").parent().appendTo(jQuery("form:first")); </code></pre> <p>But still without success...</p> http://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback/757261#757261 0 Answer by Mcbeev for JQuery UI Dialog with Asp .NET button postback.. Mcbeev 2009-04-16T17:44:08Z 2009-04-16T17:44:08Z <p>Kind of a guess, but wouldnt binding the click event in your jQuery overwrite the regular click event that asp.net generates (aka the __doPostback...). Wouldn't you want a client side trigger button to open the modal that is different from the server control button ?</p> http://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback/757285#757285 3 Answer by Chad Ruppert for JQuery UI Dialog with Asp .NET button postback.. Chad Ruppert 2009-04-16T17:49:29Z 2009-04-16T17:49:29Z <p>Primarily its because jquery moves the dialog outside of the Form tags using the DOM. Move it back inside the form tags and it should work fine. You can see this by inspecting the element in Firefox.</p> http://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback/768163#768163 19 Answer by Robert MacLean for JQuery UI Dialog with Asp .NET button postback.. Robert MacLean 2009-04-20T13:05:11Z 2009-05-24T20:21:04Z <p>You are close to the solution, just getting the wrong object. Should be like this:</p> <pre><code>jQuery(function() { var dlg = jQuery("#dialog").dialog({ draggable: true, resizable: true, show: 'Transfer', hide: 'Transfer', width: 320, autoOpen: false, minHeight: 10, minwidth: 10 }); dlg.parent().appendTo(jQuery("form:first")); }); </code></pre> http://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback/781213#781213 0 Answer by Tong Tran Son for JQuery UI Dialog with Asp .NET button postback.. Tong Tran Son 2009-04-23T10:55:40Z 2009-04-23T10:55:40Z <p>Move the dialog this the right way but you should do it only in the button opening the dialog. Here is some additional codes in Jquery UI sample.</p> <p>$('#create-user').click(function() { $("#dialog").parent().appendTo($("form:first")) $('#dialog').dialog('open'); })</p> <p>add your asp:button inside the dialog and it runs well</p> <p>Note : you should change the to to prevent postback after you click the "create user" button.</p> http://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback/856896#856896 6 Answer by Marco for JQuery UI Dialog with Asp .NET button postback.. Marco 2009-05-13T09:06:45Z 2009-05-13T09:13:53Z <pre><code>**$('#divname').parent().appendTo($("form:first"));** </code></pre> <p>For me using this code solved my problem and work in every browser. IE7, FF3 , Chrome. I start to love JQUERY... it's a cool framework</p> <p>I have tested with partial render too, exactly what I was looking for. GREAT!!</p> <pre><code>&lt;script type="text/javascript"&gt; function openModalDiv(divname) { $('#' + divname).dialog({ autoOpen: false, bgiframe: true, modal: true }); $('#' + divname).dialog('open'); $('#' + divname).parent().appendTo($("form:first")); } function closeModalDiv(divname) { $('#' + divname).dialog('close'); } &lt;/script&gt; ... ... &lt;input id="Button1" type="button" value="Open 1" onclick="javascript:openModalDiv('Div1');" /&gt; ... ... &lt;div id="Div1" title="Basic dialog" &gt; &lt;asp:UpdatePanel ID="UpdatePanel1" runat="server"&gt; &lt;ContentTemplate&gt; postback test&lt;br /&gt; &lt;asp:Button ID="but_OK" runat="server" Text="Send request" /&gt;&lt;br /&gt; &lt;asp:TextBox ID="tb_send" runat="server"&gt;&lt;/asp:TextBox&gt;&lt;br /&gt; &lt;asp:Label ID="lbl_result" runat="server" Text="prova" BackColor="#ff0000&gt;&lt;/asp:Label&gt; &lt;/ContentTemplate&gt; &lt;asp:UpdatePanel&gt; &lt;input id="Button2" type="button" value="cancel" onclick="javascript:closeModalDiv('Div1');" /&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback/1140571#1140571 1 Answer by ravi for JQuery UI Dialog with Asp .NET button postback.. ravi 2009-07-16T21:57:23Z 2009-07-16T21:57:23Z <p>Robert has answered it well. If you are looking complete example code check out <a href="http://blog.roonga.com.au/2009/07/using-jquery-ui-dialog-with-aspnet-and.html" rel="nofollow">http://blog.roonga.com.au/2009/07/using-jquery-ui-dialog-with-aspnet-and.html</a></p> http://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback/1159417#1159417 0 Answer by Yahya for JQuery UI Dialog with Asp .NET button postback.. Yahya 2009-07-21T14:05:52Z 2009-07-21T14:05:52Z <p>The solution from Robert MacLean with highest number of votes is 99% correct. But the only addition someone might require, as I did, is whenever you need to open up this jQuery dialog, do not forget to append it to parent. Like below:</p> <p><code>var dlg = $('#questionPopup').dialog( 'open'); dlg.parent().appendTo($("form:first"));</code></p> http://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback/1718775#1718775 1 Answer by ken for JQuery UI Dialog with Asp .NET button postback.. ken 2009-11-11T23:16:58Z 2009-11-11T23:16:58Z <p>FWIW, the form:first technique didn't work for me.</p> <p>However, the technique in that blog article did: <a href="http://blog.roonga.com.au/2009/07/using-jquery-ui-dialog-with-aspnet-and.html" rel="nofollow">http://blog.roonga.com.au/2009/07/using-jquery-ui-dialog-with-aspnet-and.html</a></p> <p>Specifically, adding this to the dialog declaration: open: function(type,data) { $(this).parent().appendTo("form"); }</p> http://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback/1728616#1728616 0 Answer by Mr W for JQuery UI Dialog with Asp .NET button postback.. Mr W 2009-11-13T11:17:23Z 2009-11-13T11:17:23Z <p>Just a comment, I had the same problem and since I was using a slide animation, there was an additional div added and I had compensate for that:</p> <p>dlg.parent()<strong>.parent()</strong>.appendTo($("form:first"));</p> <p>however, that caused some issue where I was unable to reopen my dialog once it was closed. Consequently I had to remove the animation all together.</p> <p>Now, on the other hand, I have an issue where I can open my dialog twice, but I can't close it the second time... </p>