如何在Sencha Extjs中的treelist上的特定节点中触发函数?

时间:2017-07-19 10:53:39

标签: javascript extjs sencha-architect

我是Sencha ExtJS的新手。我想在用户点击大学节点时添加一个标签。我该怎么用?我在互联网上搜索了很多但却找不到能够解决我问题的答案。

 items: [{
    region: 'west',
    width: 200,
    reference: 'treelistContainer',
    layout: {
        type: 'vbox',
        align: 'stretch'
    },
    itemId:'addNewTab',
    border: true,
    scrollable: 'y',
    bufferedRenderer: false,
    animate: true,
    rootVisible: false,

    items: [{
        xtype: 'treelist',      
        reference: 'treelist',
        itemId:'childpanel',
        store: {
                root: {
                    expanded: true,
                    children: [{
                        text: 'Home',
                        iconCls: 'x-fa fa-home',
                        children: [{
                            text: 'Messages',
                            iconCls: 'x-fa fa-inbox',
                            leaf: true
                        }]
                    }, {
                        text: 'Users',
                        iconCls: 'x-fa fa-user',
                        children: [{
                            text: 'Tagged',
                            iconCls: 'x-fa fa-tag',
                            leaf: true
                        }, {
                            text: 'Inactive',
                            iconCls: 'x-fa fa-trash',
                            leaf: true
                        }]
                    }, {
                        text: 'Groups',
                        iconCls: 'x-fa fa-group',
                        leaf: true
                    }, {
                        text: 'Settings',
                        iconCls: 'x-fa fa-wrench',
                        children: [{
                            name:'haseeb',
                            text: 'University',   
                            iconCls: 'x-fa fa-university',
                            leaf: true,
                            itemId: 'bar2', 
                           // cls='mycls'
                        }]
                    }]
                }
            },
  },
      }],

2 个答案:

答案 0 :(得分:0)

您可以收听到树上的itemclick事件,并检查点击记录的文字是University,即record.text,如下所示:

     listeners:{
            itemclick:function(me, record, item, index, e, eOpts){
                if(record.data.text==='University'){
                   // your adding tab functionality comes here
                 }
          }
        }

示例代码:



Ext.application({
    name: 'Fiddle',

    launch: function () {
var store = Ext.create('Ext.data.TreeStore', {
   root: {
                    expanded: true,
                    children: [{
                        text: 'Home',
                        iconCls: 'x-fa fa-home',
                        children: [{
                            text: 'Messages',
                            iconCls: 'x-fa fa-inbox',
                            leaf: true
                        }]
                    }, {
                        text: 'Users',
                        iconCls: 'x-fa fa-user',
                        children: [{
                            text: 'Tagged',
                            iconCls: 'x-fa fa-tag',
                            leaf: true
                        }, {
                            text: 'Inactive',
                            iconCls: 'x-fa fa-trash',
                            leaf: true
                        }]
                    }, {
                        text: 'Groups',
                        iconCls: 'x-fa fa-group',
                        leaf: true
                    }, {
                        text: 'Settings',
                        iconCls: 'x-fa fa-wrench',
                        children: [{
                            name:'haseeb',
                            text: 'University',   
                            iconCls: 'x-fa fa-university',
                            leaf: true,
                            itemId: 'bar2', 
                           // cls='mycls'
                        }]
                    }]
                }
});

Ext.create('Ext.tree.Panel', {
    title: 'Simple Tree',
    store: store,
     width: 200,
    rootVisible: false,
    renderTo: Ext.getBody(),
    listeners:{
        itemclick:function(me, record, item, index, e, eOpts){
            if(record.data.text==='University')
                alert('University is clicked');
        }
    }
});

    }
});

<link rel="stylesheet" href="https://cdn.sencha.com/ext/gpl/4.2.1/packages/ext-theme-neptune/build/resources/ext-theme-neptune-all.css"><!-- framework javascript --><script type="text/javascript" src="https://cdn.sencha.com/ext/gpl/4.2.1/ext-all-debug.js"></script><script type="text/javascript" src="https://cdn.sencha.com/ext/gpl/4.2.1/packages/ext-theme-neptune/build/ext-theme-neptune-debug.js"></script>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

我看到你在 Modern Toolkit 。因此,您首先需要为treelist documentation

找到合适的聆听者
items: [{
region: 'west',
width: 200,
reference: 'treelistContainer',
layout: {
    type: 'vbox',
    align: 'stretch'
},
itemId:'addNewTab',
border: true,
scrollable: 'y',
bufferedRenderer: false,
animate: true,
rootVisible: false,

items: [{
    xtype: 'treelist',      
    reference: 'treelist',
    itemId:'childpanel',

    listeners: {
        selectionchange : function(tree, rec) {
            if (rec.data.text === 'University')
            {
                //Call the tab from here

            }
        }
    },


    store: {
            root: {
                expanded: true,
                children: [{
                    text: 'Home',
                    iconCls: 'x-fa fa-home',
                    children: [{
                        text: 'Messages',
                        iconCls: 'x-fa fa-inbox',
                        leaf: true
                    }]
                }, {
                    text: 'Users',
                    iconCls: 'x-fa fa-user',
                    children: [{
                        text: 'Tagged',
                        iconCls: 'x-fa fa-tag',
                        leaf: true
                    }, {
                        text: 'Inactive',
                        iconCls: 'x-fa fa-trash',
                        leaf: true
                    }]
                }, {
                    text: 'Groups',
                    iconCls: 'x-fa fa-group',
                    leaf: true
                }, {
                    text: 'Settings',
                    iconCls: 'x-fa fa-wrench',
                    children: [{
                        name:'haseeb',
                        text: 'University',   
                        iconCls: 'x-fa fa-university',
                        leaf: true,
                        itemId: 'bar2', 
                       // cls='mycls'
                    }]
                }]
            }
        },},}], 

您的代码已更新:

$('#newLayerName').trigger("keyup")