Skip to main content

Search and Top Navigation

#10540 closed bug (duplicate)

Opened August 12, 2014 01:23PM UTC

Closed August 12, 2014 01:31PM UTC

open a modal dialog inside another modal dialog

Reported by: gabrha Owned by:
Priority: minor Milestone: none
Component: ui.dialog Version: 1.11.0
Keywords: Cc:
Blocked by: Blocking:
Description

i'm using JQuery v2.1.1 and JQuery UI v1.11.0, i'm trying to open a modal dialog inside another one, with the first (parent) dialog disabled as the background.

In both dialog the modal properties is true, but only the background in disabled, not the first dialog.

This is the HTML:

<div id="dialog-first" title="1st Modal">
    First Modal
    <input type="text" id="onetext"/>
</div>

<div id="dialog-second" title="2nd Modal">
    Second Modal
</div>

And the JS:

$( "#dialog-first" ).dialog({
    height: 300,
    modal: true,
    buttons: {
        Cancel: function() {
            $(this).dialog('close');
        }
    }
});

$( "#dialog-second" ).dialog({
    autoOpen: false,
    modal: true,
    buttons: {
        Cancel: function() {
            $(this).dialog('close');
        }
    }
});

$("#onetext").dblclick(function() {
    $("#dialog-second").dialog("open");
});

For test, i wrote the code at: http://jsfiddle.net/33PQj/

Attachments (0)
Change History (1)

Changed August 12, 2014 01:31PM UTC by tj.vantoll comment:1

resolution: → duplicate
status: newclosed

Duplicate of #10138.