source: trunk/web/addons/job_monarch/lib/extjs-30/src/widgets/grid/GridEditor.js @ 625

Last change on this file since 625 was 625, checked in by ramonb, 15 years ago

lib/extjs-30:

  • new ExtJS 3.0
File size: 547 bytes
Line 
1/*!
2 * Ext JS Library 3.0.0
3 * Copyright(c) 2006-2009 Ext JS, LLC
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
9Ext.grid.GridEditor = function(field, config){
10    Ext.grid.GridEditor.superclass.constructor.call(this, field, config);
11    field.monitorTab = false;
12};
13
14Ext.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});
Note: See TracBrowser for help on using the repository browser.