vote up 1 vote down star

I'm having trouble configuring my initial installation of dojo to include the widget framework correctly.

Following most of the code I see, including dijit should look like this:

dojo.require("dijit");

and that's that. Unfortunately, that doesn't seem to work.

Using this initializes the widgets correctly, but there's some weird behavior from the standard dijit methods that makes me think that I'm doing it wrong:

dojo.require("dijit.dijit");

Is there an element of configuring dojo that I'm missing? The files are all placed as they are in the 1.2.3 distribution, underneath another javascript folder.

flag

80% accept rate

2 Answers

vote up -1 vote down

dijit is just a folder in the Dojo structure (/dijit/). dijit.dijit points to the primary file /dijit/dijit.js.

I'm not sure if Dojo loads "private" modules automatically, but I think what you want is dijit._base or dijit.dijit-all.


AFAIK, dojo.require("dijit") only loads the core of digit -- it doesn't load any modules.

I could be wrong, but I think Dojo is set up so require works bottom-up. So, you require a module, say dijit.form.Button, and it'll make sure dijit and dijit.form are also required.

I'm guessing you're expecting the reverse, where dijit will load the entire tree top-down.

Note: I'm just beginning to learn Dojo. So, again, I could be wrong.

link|flag
vote up 2 vote down

You don't actually have to include dijit, just point directly to widgets you want to use: dojo.require("dijit.Dialog");. Weird widget behavior could be explained also by:

  • missing theme css files: check with FireBug that everything gets loaded
  • missing theme class attribute: add class="tundra" to the body element
  • missing djConfig="parseOnLoad: true"
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.