Dialog display in Dojo
How to unblock the screen when a dialog being displayed?
Usually when a dialog appears underlay(screen) is blocked and gets grey coloured. But i need to provide access to underlay even a开发者_StackOverflow社区 dialog appears. How to do it?
I think the easiest way to do that is to hide the underlay using css. Dojo will always give the underlay the same id as the dialog followed by _underlay
. So if your dialog has the id myDialog
then just add the following css somewhere:
#myDialog_underlay {
display: none;
}
More info can be found at http://docs.dojocampus.org/dijit/Dialog
精彩评论