18 lines
No EOL
530 B
JavaScript
18 lines
No EOL
530 B
JavaScript
var Example = {
|
|
init : function(){
|
|
var propsGrid = new YAHOO.ext.grid.PropsGrid('props-grid');
|
|
// The props grid takes an object as a data source
|
|
propsGrid.setSource({
|
|
"(name)": "Properties Grid",
|
|
"grouping": false,
|
|
"autoFitColumns": true,
|
|
"productionQuality": false,
|
|
"created": new Date(Date.parse('10/15/2006')),
|
|
"tested": false,
|
|
"version": .01,
|
|
"borderWidth": 1
|
|
});
|
|
propsGrid.render();
|
|
}
|
|
}
|
|
YAHOO.ext.EventManager.onDocumentReady(Example.init, Example, true); |