Upgrade to ExtJS 3.0.3 - Released 10/11/2009
[extjs.git] / docs / source / GridEditor.html
1 <html>
2 <head>
3   <title>The source code</title>
4     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
5     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
6 </head>
7 <body  onload="prettyPrint();">
8     <pre class="prettyprint lang-js">/*!
9  * Ext JS Library 3.0.3
10  * Copyright(c) 2006-2009 Ext JS, LLC
11  * licensing@extjs.com
12  * http://www.extjs.com/license
13  */
14 // private
15 // This is a support class used internally by the Grid components
16 Ext.grid.GridEditor = function(field, config){
17     Ext.grid.GridEditor.superclass.constructor.call(this, field, config);
18     field.monitorTab = false;
19 };
20
21 Ext.extend(Ext.grid.GridEditor, Ext.Editor, {
22     alignment: "tl-tl",
23     autoSize: "width",
24     hideEl : false,
25     cls: "x-small-editor x-grid-editor",
26     shim:false,
27     shadow:false
28 });</pre>
29 </body>
30 </html>