i have a jquery ui dialog where a user fills out a bunch of user inputs and then submits. One of the fields is getting more complicated and has an advanced detail view so instead of showing all of the detail on the dialog, i want to show a button that will popup another jquery ui dialog on top of the first dialog with a mini set of user inputs.

is this supported in jquery ui dialog ??

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

yes you can..

i have a JSFiddle for this. check that out.

http://jsfiddle.net/79JWB/1/

link|improve this answer
feedback

yes this can be done , call your

new ui daliog

from your button in the form .

$('#buttonid').click(function(){

    $( "#dialog-confirm" ).dialog({
        resizable: false,
        height:140,
        modal: true,
        buttons: {
            "ok": function() {
                //function
            },
            Cancel: function() {
                $( this ).dialog( "close" );
            }
        }
    })

   });
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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