Namespace adfdojox
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 adfdojox 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 API typically found in Dojo's dojox namespace See dojox API Reference for more informaton.
|
Namespace Detail
adfdojox
The ADF JavaScript library is built on and includes the Dojo 1.3.0 library The adfdojox 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 API typically found in Dojo's dojox namespace See dojox API Reference for more informaton.
For Example:
// create a new grid:
var grid = new adfdojox.grid.DataGrid({
query: {
Title: '*'
},
store: store,
clientSort: true,
rowSelector: '20px',
structure: layout
},
document.createElement('div'));
// append the new grid to the div "gridContainer":
adfdojo.byId("gridContainer").appendChild(grid.domNode);
// Call startup, in order to render the grid:
grid.startup();