--
View this message in context: http://dojo-toolkit.33424.n3.nabble.com/non-blocking-modal-dialog-tp3512382p3512382.html
Sent from the Dojo Toolkit mailing list archive at Nabble.com.
________________________________________________________
Dojotoolkit: http://dojotoolkit.org
Reference Guide: http://dojotoolkit.org/reference-guide
API Documentation: http://dojotoolkit.org/api
Tutorials: http://dojotoolkit.org/documentation
Dojo-i...@mail.dojotoolkit.org
http://mail.dojotoolkit.org/mailman/listinfo/dojo-interest
> 1. How does one remove a dijit.Dialog?
dialog.hide();
dialog.destroyRecursive();
> 2. How does one eliminate the close box? I just want a "Please wait", yes
> I know anti-web2.0, but narrowly necessary.
It seems, that's not possible. There exists a "closable" attribute, but
setting it to "false" does not remove the Close Button.
> 3. Is dijit.Dialog non-blocking?
Yes, it is.
Hope this helps...
- Rags
---
when my onLoad executes a function which calls:
var dialog = new dijit.Dialog({
title: "Loading...",
content: "Please wait.",
style: "width: 300px"
});
I get dijit.Dialog() is not a constructor. I am loading prototype,
blackbird, dwr, and other libraries this way wop. Can you clarify why this
constructor message(I have searched) and how to fix?
--
View this message in context: http://dojo-toolkit.33424.n3.nabble.com/non-blocking-modal-dialog-tp3512382p3512902.html
Sent from the Dojo Toolkit mailing list archive at Nabble.com.
I am out of syntax attempts. Any ideas/answers?
--
View this message in context: http://dojo-toolkit.33424.n3.nabble.com/non-blocking-modal-dialog-tp3512382p3513385.html
// wait for the code to be ready
dojo.ready(function () {
// now dijit.Dialog will exist
var dialog = new dijit.Dialog({ ... });
});
--
View this message in context: http://dojo-toolkit.33424.n3.nabble.com/non-blocking-modal-dialog-tp3512382p3513600.html
--
View this message in context: http://dojo-toolkit.33424.n3.nabble.com/non-blocking-modal-dialog-tp3512382p3515465.html
--
View this message in context: http://dojo-toolkit.33424.n3.nabble.com/non-blocking-modal-dialog-tp3512382p3515516.html
Did you load the "claro" css file. or tundra or whatever theme you are
using *AND* did you add class="claro" on your <body> tag?