A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
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 ?