2
我曾經在一個視圖中的一個tabpanel和一個tabpanel許多標籤,我想拿到冠軍的字符串中的控制器獲取title屬性在我的一個tabpanel
我一個tabpanel代碼:
{
xtype: 'tabpanel',
itemId: 'tabfirst',
flex: 1,
//activeItem: 1,
tabBar: {
layout: {
pack: 'center'
}
},
items: [
{
title: 'tab1',//---------i want get it's value tab1
xtype: 'list',
itemTpl: '{title}',
data: [
{title : 'title1'},
{title : 'title2'},
{title : 'title3'}
]
},
{
title: 'tab2',
html: 'here second html2'
}
]
}
在控制器發射功能代碼
var moneytab = Ext.ComponentQuery.query('.makemoney #tabfirst')[0];
console.log(moneytab.getItems().......how can i get the value of title........);
上述getItems在我的鉻控制檯返回數組列表
我的頭銜是在陣列1在items.THX
THX!我知道 – chen