I’m currently working on a Dojo/Dijit based web application. The HTML for this app is very minimal: just a div tag that is used as a connection point. The rest of the HTML is generated on the fly by the Dijit libraries. Here is an example: var table = new dojox.layout.TableContainer({ cols: 2, spacing: “5px” [...]
READ MORE »Posts tagged dijit
Editing Percent Values Using Dijit’s NumberTextBox
Dijit is a web UI toolkit built on top of the Dojo framework. One of its widgets is called NumberTextBox. This widget allows you to show and edit formatted numbers easily. For example, I can create an instance of CurrencyTextBox (a subclass of NumberTextBox) and call set(“value”, 2589632). This will display the value as follows (assuming that [...]
READ MORE »