JQuery UI Dialog with Asp .NET button postback.. - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T00:32:08Zhttp://stackoverflow.com/feeds/question/757232http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback13JQuery UI Dialog with Asp .NET button postback..Paul2009-04-16T17:36:41Z2009-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><div id="dialog" style="text-align: left;display: none;">
<asp:Button ID="btnButton" runat="server" Text="Button" onclick="btnButton_Click" />
</div>
</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#7572610Answer by Mcbeev for JQuery UI Dialog with Asp .NET button postback..Mcbeev2009-04-16T17:44:08Z2009-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#7572853Answer by Chad Ruppert for JQuery UI Dialog with Asp .NET button postback..Chad Ruppert2009-04-16T17:49:29Z2009-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#76816319Answer by Robert MacLean for JQuery UI Dialog with Asp .NET button postback..Robert MacLean2009-04-20T13:05:11Z2009-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#7812130Answer by Tong Tran Son for JQuery UI Dialog with Asp .NET button postback..Tong Tran Son2009-04-23T10:55:40Z2009-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#8568966Answer by Marco for JQuery UI Dialog with Asp .NET button postback..Marco2009-05-13T09:06:45Z2009-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><script type="text/javascript">
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');
}
</script>
...
...
<input id="Button1" type="button" value="Open 1" onclick="javascript:openModalDiv('Div1');" />
...
...
<div id="Div1" title="Basic dialog" >
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
postback test<br />
<asp:Button ID="but_OK" runat="server" Text="Send request" /><br />
<asp:TextBox ID="tb_send" runat="server"></asp:TextBox><br />
<asp:Label ID="lbl_result" runat="server" Text="prova" BackColor="#ff0000></asp:Label>
</ContentTemplate>
<asp:UpdatePanel>
<input id="Button2" type="button" value="cancel" onclick="javascript:closeModalDiv('Div1');" />
</div>
</code></pre>
http://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback/1140571#11405711Answer by ravi for JQuery UI Dialog with Asp .NET button postback..ravi2009-07-16T21:57:23Z2009-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#11594170Answer by Yahya for JQuery UI Dialog with Asp .NET button postback..Yahya2009-07-21T14:05:52Z2009-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#17187751Answer by ken for JQuery UI Dialog with Asp .NET button postback..ken2009-11-11T23:16:58Z2009-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#17286160Answer by Mr W for JQuery UI Dialog with Asp .NET button postback..Mr W2009-11-13T11:17:23Z2009-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>