Search Results

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 …
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 …
0
votes

How to cancel a file upload using dojo.io.iframe.send?

For security reasons JavaScript cannot even access the file you are sending up. All file uploads are done using a form and handled by the browser directly. To my best knowledge there is no direct i …
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 …
0
votes

Loading Dojo Library from AOL and Widget Codes from Local?

Your question is too obscured and specialized even for hard-core Dojo users. ;-) I suggest you to ask it where it belongs: in the Dojo forum …
4
votes

Dojo Parameters for Tabs

I am not an expert in Dojo widgets, but this is what I know: All Dojo widget constructors have signature: var widget = new Widget(params, node); The best wa …
1
vote

Multi Select combo box in dojo grid

The best way to get your highly specific question answered is to go through official channels, like Dojox Grid Support. …
4
votes

Struts 2 & Dojo files are too heavy and affect site’s performance.. Any remedies?

First of all check that you did everything on the server to facilitate caching (e.g., setting right HTTP headers, compression, server-side caching, upstream caches, and so on). See …
2
votes

How do I insert a DOM element in an ordered list (in Dojo)?

Personally I would do #1. Nothing is wrong with combining the serve-side generated HTML with the client-side generated one, but if it is a complicated procedure it is better to keep it in one place …
0
votes

Can i create a dojox.data.XmlStore with a url pointing to a different port or server

The data store is bound by "the same origin" restrictions like all data sources in web applications. You should either proxy the other server using your server, or consider alternative means of dat …
1
vote

Close all modal dialogs in Dojo

It appears that the only valid way now is to keep track of your dialogs and close them all when needed using hide(). …
-2
votes

How do I disable hotkeys in Dojo StackContainer

It looks like this question is too specific. Try ask the question in the Dijit forum — I am pretty sure that fe …
42
votes

Which Javascript framework (jQuery vs Dojo vs … )?

Being a Dojo developer I would recommend Dojo. While my choice is not surprising, I became a Dojo developer because I found following things, which are done better than in other JavaScript framewor …
2
votes

How to setup the Dojo Objective Harness test case structure for testing custom code?

First of all let me refer to my previous answer — it contains some useful lin …

1 2 3 4 next
15 30 50 per page