Questions tagged [dojo-1.6]

Dojo Toolkit is an open source modular JavaScript library designed to ease the rapid development of cross-platform, JavaScript/Ajax-based applications and web sites.

Dojo is a Javascript framework targeting the many needs of large-scale client-side web development.
For example, Dojo abstracts the differences among diverse browsers to provide APIs that will work on all of them (it can even run on the server under Node.js); it establishes a framework for defining modules of code and managing their interdependencies; it provides build tools for optimizing JavaScript and CSS, generating documentation, and unit testing; it supports internationalization, localization, and accessibility; and it provides a rich suite of commonly-needed utility classes and user-interface widgets.
Dojo is completely open-source. The entire toolkit can be downloaded as a ZIP and is also hosted on the Google CDN .
The toolkit includes about three thousand JavaScript modules, in addition to images and other resources.

The Dojo Toolkit is organized in several parts:

  • dojo contains the core and most non-visual modules.
  • dijit is a library of user-interface modules for widgets and layout.
  • dojox holds assorted modules not yet considered stable enough to include in dojo or dijit.
  • util includes build tools such as optimization, documentation, style-checking, and testing.

Source: Wikipedia (Dojo Toolkit)

6 questions
234
votes
21 answers

Can I get the name of the currently running function in JavaScript?

Is it possible to do this: myfile.js: function foo() { alert(); // pops-up "foo" // or even better: "myfile.js : foo" } I've got the Dojo and jQuery frameworks in my stack, so if either of those make it easier, they're…
sprugman
  • 19,351
  • 35
  • 110
  • 163
5
votes
3 answers

DOJO build that does not include DOJO base

Is this possible using v1.6.1? Due to the Xdomain configuration of my client's dojo deployment, it is necessary to execute a new build each time dev code changes. As you can imagine, this is a huge time waster. From everything I can see there is no…
4
votes
3 answers

Dojo - error trying remove and add item to store (assertion failed in ItemFileWriteStore)

I have store (and grid which displays its content), users could remove and add item but unfortunately one item after deleting could not be again added. I figure out problem is same id which was previously in store. I use Dojo 1.6. In firebug console…
IProblemFactory
  • 9,551
  • 8
  • 50
  • 66
0
votes
1 answer

Issue with dojox.form.Uploader in dojo 1.6

I've tried every variant, programmatic and declarative with no success. I'm having troubles using the dojox.form.Uploader, is seems to work just fine in version 1.10 but in 1.6 doesn't. When I select the file, nothing happens, even if the…
Flavio
  • 408
  • 4
  • 13
0
votes
1 answer

DOJO - Multiselect

how to set the data store values in dijit.form.multiselect in dojo 1.6 var comboSiteObj = new dijit.form.MultiSelect({ id: "siteNameEQ", store: dataSite, style: "font-family: Arial,Verdana Helvetica, sans-serif;width:195px" },…
0
votes
2 answers

Checkbox (dojox.grid.cells.Bool) Submitting Twice

I have a form with a number of columns, one being a Checkbox which is sending two form submits on-click of the checkbox itself and causing database lockouts. index.jsp: var gridLayout = [ ... {name:"Recurring", field:"isRecurring", type:…
Matt Rowles
  • 7,721
  • 18
  • 55
  • 88