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