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
15 lines
No EOL
519 B
JavaScript
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); |