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 …
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 …
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 …
1
vote
How do I reduce view duplication between client and server?
Well, every time you generate HTML snippets on the client and on the server you may end up with duplicated code. There is no good way around it generally. But you can do two things:
G …
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 …
0
votes
DOJO : How do you reinitiate form elements after ajax call ?
DojoX has a form manager to create elaborate CRUD applications. Basically it allows to map a flat JSON-styl …
0
votes
What are good practices for URL design in one page web apps (I use Dojo)?
It looks like you are talking about two different things:
URLs exposed by your web server framework.
URLs used by JavaScript to re-create a state inside so-called "one page a …
