Dojo dialog nesting - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T03:39:43Zhttp://stackoverflow.com/feeds/question/809350http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/809350/dojo-dialog-nesting1Dojo dialog nestingBruce Roberts2009-04-30T22:11:01Z2009-11-28T12:51:54Z
<p>can a dojo dialog bring up another dojo dialog?</p>
http://stackoverflow.com/questions/809350/dojo-dialog-nesting/859054#8590540Answer by scotts for Dojo dialog nestingscotts2009-05-13T16:44:12Z2009-05-13T16:44:12Z<p>Yes, a dialog can open another dialog, but then you'd have two dialogs displayed -- they aren't modal between each other.</p>
<p>Since this is not the behavior I desire I've worked around this by creating my own handler -- it first checks for an open dialog, and if it finds one, closes it (and places it on a stack) before opening a new dialog. When it closes one it looks at the stack and re-opens dialogs lower on the stack.</p>
http://stackoverflow.com/questions/809350/dojo-dialog-nesting/1684666#16846660Answer by Ed for Dojo dialog nestingEd2009-11-06T00:42:50Z2009-11-06T00:42:50Z<p>dojo 1.3 only supports one modal dialog at a time, so while, yes, one dialog can open another, closing the second destroys the modality of the first.</p>
<p>This happens because dojo.Dialog uses a single global underlay object that provides screen between the dialog and anything else on the page. You can make it work if you're wiling to create your own underlay for each dialog and manage the z-indexes yourself.</p>
<p>I understand this will be rectified in 1.4.</p>
http://stackoverflow.com/questions/809350/dojo-dialog-nesting/1812461#18124610Answer by Joscha for Dojo dialog nestingJoscha2009-11-28T12:51:54Z2009-11-28T12:51:54Z<p>Multiple dialogs can be opened prior to Dojo 1.4, but there are problems with accessibility in that case (<code>tabIndex</code> is handled wrong) - so if you need your app to be accessible and support mutliple dialogs., you need to upgrade to Dojo 1.4 when it comes out.</p>