source:
trunk/workshop-routing-foss4g/web/ext/src/widgets/grid/GridEditor.js
@
81
Revision 76, 549 bytes checked in by djay, 13 years ago (diff) | |
---|---|
|
Line | |
---|---|
1 | /*! |
2 | * Ext JS Library 3.4.0 |
3 | * Copyright(c) 2006-2011 Sencha Inc. |
4 | * licensing@sencha.com |
5 | * http://www.sencha.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 | }); |
Note: See TracBrowser
for help on using the repository browser.