当前位置:Web前端 > extjs> 正文

extjs实现树形下拉框

时间:2014-5-3类别:Web前端

extjs实现树形下拉框

extjs实现树形下拉框

实现一、TreeField控件

 

TreeField的实现代码如下

  •  
  • JScript 代码   复制
  • 
    Ext.form.TreeField = Ext.extend(Ext.form.TriggerField,  {   
        /**  
         * @cfg {Boolean} readOnly  
         * 设置为只读状态  
         *   
         */  
        readOnly : true ,   
        /**  
         * @cfg {String} displayField  
         * 用于显示数据的字段名  
         *   
         */  
        displayField : 'text',   
        /**  
         * @cfg {String} valueField  
         * 用于保存真实数据的字段名  
         */  
        valueField : null,   
        /**  
         * @cfg {String} hiddenName  
         * 保存真实数据的隐藏域名  
         */  
        hiddenName : null,   
        /**  
         * @cfg {Integer} listWidth  
         * 下拉框的宽度  
         */  
        listWidth : null,   
        /**  
         * @cfg {Integer} minListWidth  
         * 下拉框最小宽度  
         */  
        minListWidth : 50,   
        /**  
         * @cfg {Integer} listHeight  
         * 下拉框高度  
         */  
        listHeight : null,   
        /**  
         * @cfg {Integer} minListHeight  
         * 下拉框最小高度  
         */  
        minListHeight : 50,   
        /**  
         * @cfg {String} dataUrl  
         * 数据地址  
         */  
        dataUrl : null,
        /**  
         * @cfg {Ext.tree.TreePanel} tree  
         * 下拉框中的树  
         */  
        tree : null,   
        /**  
         * @cfg {String} value  
         * 默认值  
         */  
        value : null,   
        /**  
         * @cfg {String} displayValue  
         * 用于显示的默认值  
         */  
        displayValue : null,   
        /**  
         * @cfg {Object} baseParams  
         * 向后台传递的参数集合  
         */  
        baseParams : {},   
        /**  
         * @cfg {Object} treeRootConfig  
         * 树根节点的配置参数  
         */  
        treeRootConfig : {   
            id : ' ',   
            text : '全国',   
            draggable:false  
            },   
        /**  
         * @cfg {String/Object} autoCreate  
         * A DomHelper element spec, or true for a default element spec (defaults to  
         * {tag: "input", type: "text", size: "24", autocomplete: "off"})  
         */  
        defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},   
      
        initComponent : function(){   
            Ext.form.TreeField.superclass.initComponent.call(this);   
            this.addEvents(   
                    'select',   
                    'expand',   
                    'collapse',   
                    'beforeselect'        
            );   
               
        },   
        initList : function(){   
            if(!this.list){   
                var cls = 'x-treefield-list';   
      
                this.list = new Ext.Layer({   
                    shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false  
                });   
      
                var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);   
                this.list.setWidth(lw);   
                this.list.swallowEvent('mousewheel');   
                   
                this.innerList = this.list.createChild({cls:cls+'-inner'});   
                this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));   
                this.innerList.setHeight(this.listHeight || this.minListHeight);   
                if(!this.tree){   
                    this.tree = this.createTree(this.innerList);       
                }   
                this.tree.on('click',this.select,this);   
                this.tree.render();   
            }   
        },   
        onRender : function(ct, position){   
            Ext.form.TreeField.superclass.onRender.call(this, ct, position);   
            if(this.hiddenName){   
                this.hiddenField = this.el.insertSibling({tag:'input',    
                                                         type:'hidden',    
                                                         name: this.hiddenName,    
                                                         id: (this.hiddenId||this.hiddenName)},   
                        'before', true);   
                this.hiddenField.value =   
                    this.hiddenValue !== undefined ? this.hiddenValue :   
                    this.value !== undefined ? this.value : '';   
                this.el.dom.removeAttribute('name');   
            }   
            if(Ext.isGecko){   
                this.el.dom.setAttribute('autocomplete', 'off');   
            }   
      
    
            this.initList();   
        },   
        select : function(node){   
            if(this.fireEvent('beforeselect', node, this)!= false){   
                this.onSelect(node);   
                this.fireEvent('select', this, node);   
            }   
        },   
        onSelect:function(node){   
            this.setValue(node);   
            this.collapse();   
        },   
        createTree:function(el)标签:
  • 上一篇下一篇

    猜您喜欢

    热门推荐