vote up 0 vote down star

Is it possible to make Dojo (javascript) widgets validate for XHTML?

If so, how?

Can it be something as simple as using CDATA?

flag

2 Answers

vote up 1 vote down

Yes, instead of using the dojoType="dojo.foo.bar" non-standard attribute, you instead need to have a document onload event that "takes over" standard HTML tags in your document and rewrites them into Dojo ones.

link|flag
1  
It's just a lot more work! – Chris KL Feb 9 at 23:55
Can I not use something like CDATA tags to make this work? – Greg82 Feb 9 at 23:59
vote up 0 vote down

CDATA won't help you here. If you really want to write code according to XHTML DTD/schema, you can do it, but cannot take advantage of the flexibility of Dojo markup language (DojoML). What you can do is that you define your own way to mark the widgets, like <div class="dojoButton"/> and then you instantiate them on the page load using something like:

dojo.query('div[class=dojoButton]').instantiate(
  dijit.form.Button, {}
);

Before you do that, please have a look at this paragraph Dojo Doesn’t Validate (in the middle of the article) and this Dojo Degradability.

link|flag

Your Answer

Get an OpenID
or

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