grideditor.js

来自「本软件包为使用ExtJs 必须要加载的js插件」· JavaScript 代码 · 共 23 行

JS
23
字号
/*
 * Ext JS Library 2.0.2
 * Copyright(c) 2006-2008, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */

// private// This is a support class used internally by the Grid componentsExt.grid.GridEditor = function(field, config){    Ext.grid.GridEditor.superclass.constructor.call(this, 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:false});

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?