3
votes
How do you manage your DojoX code?
There are several ways to do it:
Stick to one version of Dojo and use it consistently.
Move modified code to your own namespace and include it from there.
Effectivel …
2
votes
Remove all the children DOM elements in div
First of all you need to create a surface once and keep it somewhere handy.
You can clear everything on the surface in one go (all existing shape objects will be invalidated, don't use them …
3
votes
How to add a div dynamically by using Dojo?
You can do it using just Dojo Base — no need to include anything, if you use the trunk or Dojo 1.3:
dojo.create("div", {id: "div1_1"}, "div1");
This line cre …
2
votes
Text length with dojo gfx
I would suggest to use dojox.html.metrics module, specifically getTextBox(text, style) function. Just use the same style you'll be using in dojox.gfx: font, s …
0
votes
Dojox legend color for markers incorrect
Are you by any chance creating the legend before populating a chart? Or do you make other changes to the chart? If you want to reflect any changes in the legend widget, you should call refres …
0
votes
0
votes
Capturing Keyboard Events in Dojox GFX
Keyboard events are not pointed, they are essentially global. You should catch them globally attaching a handler to document or body.
…
0
votes
(dojo) dojox.form.Manager not firing observers
IIRC an observer is a method name on a form manager, not a standalone function. While you didn't give the complete example to test, your naming suggest that you use a standalone function.
Y …
