hello everyone I want to add a tabpanel when click the Tree's items

but there is nothing in the new tabpanel here is my code below ...

initComponent: function () {
        var me = this;
            me.content = [];
            me.on("itemclick",function(o,record ,item ,index){
                var content = Ext.getCmp("user_content");
                if(record.data.id == 'User'){
                    Ext.getCmp('tab_userlist').show();
                    return ;
                }
                var  n = content.getComponent(record.data.id);

                if (!n) { 
                    n = content.add({ 
                        id: record.data.id, 
                        title: record.data.text, 
                        closable: true, 
                        items: Ext.create('App.view.member.'+record.data.id)
                    }); 
                    content.setActiveTab(n); 
                }else { 
                    content.setActiveTab(n); 
                }
            });
        this.callParent(arguments);
}


     Ext.define('App.view.member.Nodelist', {
            extend: 'Ext.window.Window',
            alias: 'widget.nodelist',
            store :Ext.create('App.store.member.User'),
            layout:'fit',
           ......
link|improve this question
Looks like your App.view.member is a window instead of a Panel. I believe TabPanel only accepts normal Panels (or subclassed Panels). – CincauHangus Feb 15 at 3:54
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.