87,997
社区成员




var tab = Ext.create('Ext.tab.Panel', {
activeTab : 0,
enableTabScroll : true,
animScroll : true,
border : true,
autoScroll : true,
region : 'center',
split : true,
tabBar:{
items:{
xtype:'button',
text:'刷新'
}
},
items : [ {
iconCls : 'icon-activity',
title : '平台首页',
layout : 'column'
} ]
});
tabBar:{
items:[
{
xtype:'button',
text:'refresh',
listeners:{
'click':function(){
alert('you clicked a tab btn');
}
}
}]
},