vote up 10 vote down star
5

Hello ... I have a JQuery UI Dialog working great on my Asp .NET page:

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');
        });
    })

My div:

<div id="dialog" style="text-align: left;display: none;">
    <asp:Button ID="btnButton" runat="server" Text="Button" onclick="btnButton_Click" />       
</div>

But the btnButton_Click is never called... How can I solve that?

Thanks

More Info : I added this code to move div to form :

jQuery("#dialog").parent().appendTo(jQuery("form:first"));

But still without success...

flag

7 Answers

vote up 12 vote down check

You are close to the solution, just getting the wrong object. Should be like this:

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"));
});
link|flag
thank you, I love SO – andy Jun 30 at 7:35
What do I do in a usercontrol? it doesn't work. – Shimmy Jul 21 at 12:52
Awesome. Solved a similar problem for me. – Eli Sep 12 at 22:10
vote up 2 vote down

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.

link|flag
I moved it inside form : jQuery("#dialog").parent().appendTo(jQuery("form:first")); But the problem still there... – Paul Apr 16 at 17:57
You aren't registering any other jquery events on the btnButton object are you? – Chad Ruppert Apr 16 at 18:03
No... Just btnButton_Click... – Paul Apr 16 at 18:05
and when are you putting it back in the form? immediately after open? – Chad Ruppert Apr 16 at 18:08
jQuery(function() { jQuery("#dialog").dialog({ draggable: true, resizable: true, show: 'Transfer', hide: 'Transfer', width: 320, autoOpen: false, minHeight: 10, minwidth: 10 }); jQuery("#dialog").parent().appendTo(jQuery("form:first")); }); is what it should be. – Chad Ruppert Apr 16 at 18:11
show 4 more comments
vote up 2 vote down
**$('#divname').parent().appendTo($("form:first"));**

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

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

<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>
link|flag
vote up 0 vote down

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 ?

link|flag
vote up 0 vote down

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.

$('#create-user').click(function() { $("#dialog").parent().appendTo($("form:first")) $('#dialog').dialog('open'); })

add your asp:button inside the dialog and it runs well

Note : you should change the to to prevent postback after you click the "create user" button.

link|flag
vote up 0 vote down

Robert has answered it well. If you are looking complete example code check out http://blog.roonga.com.au/2009/07/using-jquery-ui-dialog-with-aspnet-and.html

link|flag
vote up 0 vote down

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:

var dlg = $('#questionPopup').dialog( 'open'); dlg.parent().appendTo($("form:first"));

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.