我在extjs中使用了一個標籤面板。我想在點擊標籤時顯示警報。但我不知道如何。在EXTJS中的標籤面板單擊監聽器
這就是我現在做的事:
{
xtype: 'tabpanel',
activeTab: 0,
region: 'center',
items: [
{
xtype: 'panel',
title: 'All',
items: [grid]
},
{
xtype: 'panel',
title: 'Closed'
},
{
xtype: 'panel',
title: 'Open'
}
],
listeners: {
click: function() {
alert('test');
}
}
}
如何被顯示完畢,關閉或當單擊該選項卡上打開?