Upgrade to ExtJS 3.2.2 - Released 06/02/2010
[extjs.git] / src / widgets / grid / GridEditor.js
1 /*!
2  * Ext JS Library 3.2.2
3  * Copyright(c) 2006-2010 Ext JS, Inc.
4  * licensing@extjs.com
5  * http://www.extjs.com/license
6  */
7 // private
8 // This is a support class used internally by the Grid components
9 Ext.grid.GridEditor = function(field, config){
10     Ext.grid.GridEditor.superclass.constructor.call(this, field, config);
11     field.monitorTab = false;
12 };
13
14 Ext.extend(Ext.grid.GridEditor, Ext.Editor, {
15     alignment: "tl-tl",
16     autoSize: "width",
17     hideEl : false,
18     cls: "x-small-editor x-grid-editor",
19     shim:false,
20     shadow:false
21 });