Hello,
i need the dijit dialog in a non-modal version. For example i hava a button which displays the dialog. Now i need the opportunity to press the button again while the dialog is shown, so when the button is pressed again, the data in the dialog gets updated. Is tha possible, somehow? or is there a workaround, e.g. something different than the dijit dialog?
Another Question: I have to disable the grey curtain when a dialog is shown. Is that possible too?
Thank you for your time!

Have you tried TooltipDialog?
TooltipDialog is not modal. Would that work for you?
Also, TooltipDialog doesn't display the "gray curtain".
Set the width attribute to 0 to remove the grey screen.
Hi,
Just set the CSS width attribute to 0 to remove the grey screen that is getting displayed when a dialog is shown. Remember that the class name is generated dynamically. So you need to find out the correct id ( #dijit_DialogUnderlay_1, #dijit_DialogUnderlay_2 ......)
#dijit_DialogUnderlay_1 {
width : 0px;
}
Regards,
Bins
Set the width attribute to 0 to remove the grey screen.
Hi,
Just set the CSS width attribute to 0 to remove the grey screen that is getting displayed when a dialog is shown. Remember that the id name is generated dynamically. So you need to find out the correct id ( #dijit_DialogUnderlay_1, #dijit_DialogUnderlay_2 ......)
#dijit_DialogUnderlay_1 {
width : 0px;
}
Regards,
Bins
binspaul's reply has given
binspaul's reply has given some idea to me...
But I do it in a different way. I create my own widget named ModelessDialog, and over write its "show" method as follow:
show: function(){
this.inherited("show", arguments);
this._underlay.hide();
}
That works fine!!!