Hey Marcel,
What if i want to condition the close button. So in case A show it, in case B dont show it.
Also, if i show the Close button, can i do something in EGL after it is clicked?
Ideally, i would like to be able to implement this type of code below. It would disable the X and also disable the escape key from closing window.
Not sure if this would be a PRM.
require(["dijit/Dialog", "dojo/domReady!"], function(Dialog){ myDialog = new Dialog({ title: "My Dialog", content: "Test content.", style: "width: 300px", closable: false // here });});
nick_tn