Class Index | File Index

Classes


Namespace adfdojo


Defined in: core.js.

Namespace Summary
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); 
  }
})

Documentation generated by JsDoc Toolkit 2.1.0 on Mon May 17 2010 13:45:44 GMT-0700 (PDT)