123456789101112131415161718 |
- /*
- * Ext JS Library 2.0 Copyright(c) 2006-2007, Ext JS, LLC. licensing@extjs.com
- *
- * http://extjs.com/license
- */
- Ext.grid.GridEditor = function(B, A) {
- Ext.grid.GridEditor.superclass.constructor.call(this, B, A);
- B.monitorTab = false
- };
- Ext.extend(Ext.grid.GridEditor, Ext.Editor, {
- alignment : "tl-tl",
- autoSize : "width",
- hideEl : false,
- cls : "x-small-editor x-grid-editor",
- shim : false,
- shadow : false
- });
|