Search Results

0
votes

Is there a good embeddable code widget for blogs

I use a highlighter included in Dojo (adapted from Ivan Sagalaev's highlight.js). All you need to do is to include a few line …
1
vote

Is there an Erase for dojo’s gfx surface routines?

In short: no. Remember that this a vector graphics with a scene graph. It doesn't operate in term of frame buffers or pixels => it doesn't support a notion of erasing areas. What you can do …
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 …
7
votes

Looking for a better JavaScript unit test tool

Take a look at the Dojo Object Harness (DOH) unit test framework which is pretty much fram …
0
votes

Can I unit test the DOM?

I just answered a similar question. In short: take a look at …
1
vote

Javascript execution order issues with Dojo

It is not the Dojo quirk but the way browsers work. Basically it may take some time for DOM to reflect your changes and reposition elements, or even change the layout. That's why you see what you s …
5
votes

How to make Dojo a bit more lightweight?

Dojo is not huge — it loads as much as you need to use while the base is 26k gzipped. And obviously for any real deployment: Use AOL or Google CDN. See …
1
vote

Drawing on top of an image in Javascript

Use dojox.gfx. It is cross-browser (SVG/VML/Canvas/Silverlight) and it looks like it fits the bill. You can download it from …
1
vote

How can I pre-set arguments in JavaScript function call? (Partial Function Application)

If you use Dojo you just call dojo.hitch() that does almost exactly what you want. Almost — because it can be used to pack the context as well. But your example is first: dojo …
3
votes

Non-web Javascript frameworks

Dojo can be used (and is used) in non-browser environments (e.g., Rhino, Jaxer, SpiderMonkey). It can be easily adapted for other environments t …
0
votes

caching JavaScript files

The best (and only) method is to set correct HTTP headers, specifically these ones: "Expires", "Last-Modified", and "Cache-Control". How to do it depends on the server software you use. In …
3
votes

What JavaScript library would you choose for a new project and why?

Dojo. The base is 26k, and much more than just a DOM traversal. It can do gradual degradable enhancements, but as soon as your app is ready for t …
1
vote

Should DOMNodeInsertedIntoDocument bubble?

I guess you already discovered that they should not bubble. But it is a moot point for a practical developer because they are not supported by IE, which still holds ~80% of the market. :-( …
8
votes

JavaScript: Check if mouse button down?

Regarding Pax' solution: it doesn't work if user clicks more than one button intentionally or accidentally. Don't ask me how I know :-(. The correct code should be like that: …
4
votes

Consuming remote web services from client-side script

In your question your mentioned the <script> trick. JSONP is based on that. It was formally proposed a …

1 2 3 4 5 next
15 30 50 per page