码迷,mamicode.com
首页 > Web开发 > 详细

ExtJS 4 【Ext.tab.Panel】

时间:2016-11-24 07:03:32      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:otto   page   ges   border   order   bottom   pad   .com   lin   

技术分享

 

Ext.onReady(function () {
    Ext.create(‘Ext.tab.Panel‘, {
        title: ‘Ext.tab.Panel 示例‘,
        frame: true,
        height: 150,
        width: 300,
        activeTab: 1,
        renderTo: ‘content‘,
        items: [
            { title: ‘1‘, html: ‘1‘ },
            { title: ‘2‘, html: ‘2‘ },
            { title: ‘3‘, html: ‘3‘ }
        ]
    });

});

 

技术分享

 

Ext.onReady(function () {
    var tabPanel= Ext.create(‘Ext.tab.Panel‘, {
        title: ‘Ext.tab.Panel 示例‘,
        frame: true,
        height: 150,
        width: 300,
        activeTab: 1,
        renderTo: ‘content‘,
        items: [
            { title: ‘1‘, html: ‘1‘ },
            { title: ‘2‘, html: ‘2‘ },
            { title: ‘3‘, html: ‘3‘ }
        ],
        buttons: [{
            text: ‘添加‘,
            handler:addTabPage
        }]
    });

    function addTabPage() {
        var index = tabPanel.items.length + 1;
        var tabPage = tabPanel.add({
            title: index,
            html: index,
            closable:true
        });
        tabPanel.setActiveTab(tabPage);
    }

});

ExtJS 4 【Ext.tab.Panel】

标签:otto   page   ges   border   order   bottom   pad   .com   lin   

原文地址:http://www.cnblogs.com/CodingArt/p/6095638.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!