webgui/www/extras/yui-ext/examples/grid/custom-grid.js
JT Smith cfd09a5cb6 upgraded to yui 0.12.0
upgraded to yui-ext 0.33 rc2
2006-11-28 02:23:34 +00:00

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);