source: trunk/web/addons/job_monarch/lib/extjs/source/widgets/grid/GridEditor.js @ 619

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

lib/:

  • added new AJAX dependancies: ExtJS, pChart, Lightbox2
File size: 571 bytes
Line 
1/*
2 * Ext JS Library 2.2.1
3 * Copyright(c) 2006-2009, Ext JS, LLC.
4 * licensing@extjs.com
5 *
6 * http://extjs.com/license
7 */
8
9// private
10// This is a support class used internally by the Grid components
11Ext.grid.GridEditor = function(field, config){
12    Ext.grid.GridEditor.superclass.constructor.call(this, field, config);
13    field.monitorTab = false;
14};
15
16Ext.extend(Ext.grid.GridEditor, Ext.Editor, {
17    alignment: "tl-tl",
18    autoSize: "width",
19    hideEl : false,
20    cls: "x-small-editor x-grid-editor",
21    shim:false,
22    shadow:false
23});
Note: See TracBrowser for help on using the repository browser.