Take the community feedback survey now.
AI OnAI Off
Take the community feedback survey now.
maybe you could use Dojo publish subscribe?
Publish when want to close dialogs
this.setValueAttr(value)
{
this._set("value", value)
topic.publish("closeAllDialogs", value);
}
Then subscribe to the event and close all dialogs:
postMixingPropertis: function()
{
topic.subscribe("closeAllDialogs", function(value)
{
this.reloadOptions(value);
});
}
hi
i"m writing dojo property that open 4 dialog one after the other, i want the last child to close all of them togther.
what is the best weay to close them all ?
also can someone point me to where i can get some insight on sending infotrmation between these dialogs, or events ?