码迷,mamicode.com
首页 > 编程语言 > 详细

Javascript - ExtJs - TabPanel组件

时间:2017-09-02 20:02:30      阅读:338      评论:0      收藏:0      [点我收藏+]

标签:render   ring   选项卡   component   ber   关闭   技术分享   round   内容   

示例

Ext.create(‘Ext.tab.Panel‘, {
    width: "100%",
    renderTo: "tabBox",
    items: [
        {
            title: "权限查询",
            items: [
                Ext.getCmp("TbRightPanel") //将组件放进tab
            ]
        },
        {
            title: "配置员工权限",
            items: [
                        
            ]
        }
    ]
});

 

配置

技术分享
bodyPadding:number
//内边距

disabled:bool
//禁用

activeTab:index | Ext.Component
//默认激活哪一个选项卡
View Code

子项配置 

技术分享
itemId:string
//id

bodyPadding:number
//内边距

hidden:bool
//被隐藏

html:string
//内容

closable: bool
//可关闭

tabIndex:number
//自定索引
View Code

方法

技术分享
setActiveTab(tabId | tabIndex | Ext.Component)
//设置默认激活参数指定的选项卡组件,返回这个选项卡组件

getActiveTab()
//获取被激活的选项卡组件

remove(tabId | tabIndex | Ext.Component)
//移除参数指定的选项卡组件
View Code

 

Javascript - ExtJs - TabPanel组件

标签:render   ring   选项卡   component   ber   关闭   技术分享   round   内容   

原文地址:http://www.cnblogs.com/myrocknroll/p/7455043.html

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