webgui/www/extras/yui-ext/source/grid/EditorGrid.js
JT Smith 4f68a0933c added YUI and YUI-ext
fixed the resizable text area with IE problem
fixed the ad space with IE problem
merged the 7.2.0 and 7.1.4 change logs
2006-11-07 23:15:57 +00:00

15 lines
No EOL
519 B
JavaScript

/*
* YUI Extensions
* Copyright(c) 2006, Jack Slocum.
*
* This code is licensed under BSD license.
* http://www.opensource.org/licenses/bsd-license.php
*/
YAHOO.ext.grid.EditorGrid = function(container, dataModel, colModel){
YAHOO.ext.grid.EditorGrid.superclass.constructor.call(this, container, dataModel,
colModel, new YAHOO.ext.grid.EditorSelectionModel());
this.container.addClass('yeditgrid');
};
YAHOO.extendX(YAHOO.ext.grid.EditorGrid, YAHOO.ext.grid.Grid);