Namespace adfdojo
Defined in: core.js.
Constructor Attributes | Constructor Name and Description |
---|---|
The ADF JavaScript library is built on and includes the Dojo 1.3.0 library The adfdojo namespace is a re-scope of Dojo's dojo namespace to prevent potential conflicts with other Dojo libraries that may be added to the web application
This namespace contains the JavaScript objects typically found in Dojo's dojo namespace See dojo API Reference for more informaton.
|
Namespace Detail
adfdojo
The ADF JavaScript library is built on and includes the Dojo 1.3.0 library The adfdojo namespace is a re-scope of Dojo's dojo namespace to prevent potential conflicts with other Dojo libraries that may be added to the web application
This namespace contains the JavaScript objects typically found in Dojo's dojo namespace See dojo API Reference for more informaton.
To use API in the dojo namespace, you will need to use the adfdojo namespace instead.
For Example:
adfdojo.connect(adfdojo.byId("div1"),"onclick", alert("Hello World"));
adfdojo.declare(Thinger,null,{
constructor: function() {
this.type = "thinger";
},
printType: function() {
console.log(" I am a "+ this.type);
}
})