16 lines
No EOL
853 B
HTML
16 lines
No EOL
853 B
HTML
<html><head><title>GridEditor.js</title><link rel="stylesheet" type="text/css" href="../resources/style.css" media="screen"/></head><body><h1>GridEditor.js</h1><pre class="highlighted"><code><i>// private</i>
|
|
<i>// This is a support class used internally by the Grid components</i>
|
|
Ext.grid.GridEditor = <b>function</b>(field, config){
|
|
Ext.grid.GridEditor.superclass.constructor.call(<b>this</b>, field, config);
|
|
field.monitorTab = false;
|
|
};
|
|
|
|
Ext.extend(Ext.grid.GridEditor, Ext.Editor, {
|
|
alignment: "tl-tl",
|
|
autoSize: "width",
|
|
hideEl : false,
|
|
cls: "x-small-editor x-grid-editor",
|
|
shim:false,
|
|
shadow:"frame"
|
|
});</code></pre><hr><div style="font-size:10px;text-align:center;color:gray;">Ext - Copyright © 2006-2007 Ext JS, LLC<br />All rights reserved.</div>
|
|
</body></html> |