Extjs3.4--TabpanelDemo

        Ext.onReady(function () {
            var tab = new Ext.TabPanel({
                renderTo: Ext.getBody(),
                height: 500
            })
            tab.add({
                title: "tab1",
                html:"content"
            })
            tab.add({
                id:Ext.id(),
                title:"tab2",
                closable:true
            })
            tab.activate(0);
        })

  

原文地址:https://www.cnblogs.com/anbylau2130/p/3624052.html