TreeEditor.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:6k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * @class Ext.tree.TreeEditor
  9.  * @extends Ext.Editor
  10.  * Provides editor functionality for inline tree node editing.  Any valid {@link Ext.form.Field} subclass can be used
  11.  * as the editor field.
  12.  * @constructor
  13.  * @param {TreePanel} tree
  14.  * @param {Object} fieldConfig (optional) Either a prebuilt {@link Ext.form.Field} instance or a Field config object
  15.  * that will be applied to the default field instance (defaults to a {@link Ext.form.TextField}).
  16.  * @param {Object} config (optional) A TreeEditor config object
  17.  */
  18. Ext.tree.TreeEditor = function(tree, fc, config){
  19.     fc = fc || {};
  20.     var field = fc.events ? fc : new Ext.form.TextField(fc);
  21.     Ext.tree.TreeEditor.superclass.constructor.call(this, field, config);
  22.     this.tree = tree;
  23.     if(!tree.rendered){
  24.         tree.on('render', this.initEditor, this);
  25.     }else{
  26.         this.initEditor(tree);
  27.     }
  28. };
  29. Ext.extend(Ext.tree.TreeEditor, Ext.Editor, {
  30.     /**
  31.      * @cfg {String} alignment
  32.      * The position to align to (see {@link Ext.Element#alignTo} for more details, defaults to "l-l").
  33.      */
  34.     alignment: "l-l",
  35.     // inherit
  36.     autoSize: false,
  37.     /**
  38.      * @cfg {Boolean} hideEl
  39.      * True to hide the bound element while the editor is displayed (defaults to false)
  40.      */
  41.     hideEl : false,
  42.     /**
  43.      * @cfg {String} cls
  44.      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
  45.      */
  46.     cls: "x-small-editor x-tree-editor",
  47.     /**
  48.      * @cfg {Boolean} shim
  49.      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
  50.      */
  51.     shim:false,
  52.     // inherit
  53.     shadow:"frame",
  54.     /**
  55.      * @cfg {Number} maxWidth
  56.      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
  57.      * the containing tree element's size, it will be automatically limited for you to the container width, taking
  58.      * scroll and client offsets into account prior to each edit.
  59.      */
  60.     maxWidth: 250,
  61.     /**
  62.      * @cfg {Number} editDelay The number of milliseconds between clicks to register a double-click that will trigger
  63.      * editing on the current node (defaults to 350).  If two clicks occur on the same node within this time span,
  64.      * the editor for the node will display, otherwise it will be processed as a regular click.
  65.      */
  66.     editDelay : 350,
  67.     initEditor : function(tree){
  68.         tree.on({
  69.             scope: this,
  70.             beforeclick: this.beforeNodeClick,
  71.             dblclick: this.onNodeDblClick
  72.         });
  73.         this.on({
  74.             scope: this,
  75.             complete: this.updateNode,
  76.             beforestartedit: this.fitToTree,
  77.             specialkey: this.onSpecialKey
  78.         });
  79.         this.on('startedit', this.bindScroll, this, {delay:10});
  80.     },
  81.     // private
  82.     fitToTree : function(ed, el){
  83.         var td = this.tree.getTreeEl().dom, nd = el.dom;
  84.         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
  85.             td.scrollLeft = nd.offsetLeft;
  86.         }
  87.         var w = Math.min(
  88.                 this.maxWidth,
  89.                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
  90.         this.setSize(w, '');
  91.     },
  92.     /**
  93.      * Edit the text of the passed {@link Ext.tree.TreeNode TreeNode}.
  94.      * @param node {Ext.tree.TreeNode} The TreeNode to edit. The TreeNode must be {@link Ext.tree.TreeNode#editable editable}.
  95.      */
  96.     triggerEdit : function(node, defer){
  97.         this.completeEdit();
  98. if(node.attributes.editable !== false){
  99.            /**
  100.             * The {@link Ext.tree.TreeNode TreeNode} this editor is bound to. Read-only.
  101.             * @type Ext.tree.TreeNode
  102.             * @property editNode
  103.             */
  104. this.editNode = node;
  105.             if(this.tree.autoScroll){
  106.                 Ext.fly(node.ui.getEl()).scrollIntoView(this.tree.body);
  107.             }
  108.             var value = node.text || '';
  109.             if (!Ext.isGecko && Ext.isEmpty(node.text)){
  110.                 node.setText(' ');
  111.             }
  112.             this.autoEditTimer = this.startEdit.defer(this.editDelay, this, [node.ui.textNode, value]);
  113.             return false;
  114.         }
  115.     },
  116.     // private
  117.     bindScroll : function(){
  118.         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
  119.     },
  120.     // private
  121.     beforeNodeClick : function(node, e){
  122.         clearTimeout(this.autoEditTimer);
  123.         if(this.tree.getSelectionModel().isSelected(node)){
  124.             e.stopEvent();
  125.             return this.triggerEdit(node);
  126.         }
  127.     },
  128.     onNodeDblClick : function(node, e){
  129.         clearTimeout(this.autoEditTimer);
  130.     },
  131.     // private
  132.     updateNode : function(ed, value){
  133.         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
  134.         this.editNode.setText(value);
  135.     },
  136.     // private
  137.     onHide : function(){
  138.         Ext.tree.TreeEditor.superclass.onHide.call(this);
  139.         if(this.editNode){
  140.             this.editNode.ui.focus.defer(50, this.editNode.ui);
  141.         }
  142.     },
  143.     // private
  144.     onSpecialKey : function(field, e){
  145.         var k = e.getKey();
  146.         if(k == e.ESC){
  147.             e.stopEvent();
  148.             this.cancelEdit();
  149.         }else if(k == e.ENTER && !e.hasModifier()){
  150.             e.stopEvent();
  151.             this.completeEdit();
  152.         }
  153.     },
  154.     
  155.     onDestroy : function(){
  156.         clearTimeout(this.autoEditTimer);
  157.         Ext.tree.TreeEditor.superclass.onDestroy.call(this);
  158.         var tree = this.tree;
  159.         tree.un('beforeclick', this.beforeNodeClick, this);
  160.         tree.un('dblclick', this.onNodeDblClick, this);
  161.     }
  162. });