i use the tab bar in extjs. I want to display a warning when I click on a tab. But I'm not sure how to do this.
This is what I am doing now:
{
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');
}
}
}
How to display everything, close or open when this tab is clicked?
source
share