I have the problem with widget Dialog. I have tried to create dialog widget and after that to show Dialog. I want to open dialog without push button, but it didn't work. How to do this?
How to show Dialog widget without push the button?
Submitted by pejsmont on Tue, 06/03/2008 - 20:39.
- Login or register to post comments
- Unsubscribe post

Programmatically: ...
Programmatically:
...
var myDialogNode = document.createElement("div");
var myDialog = new dijit.Dialog({
id: "myDialog",
title: "Title",
refocus: false
}, myDialogNode);
myDialog.show();
...
nic
i win.
all dijits take null as a node, in which case it will be created (no need for the createElement call)
;)
:) nic
:)
nic