Hi, I've a simple App with a single tab panel with 2 items.
What I want is switch to the second item by clicking on a banner that is in the first item in the html.
I've this view:
Code:
Ext.define('test.view.Tlist', {
extend: 'Ext.DataView',
alias: 'widget.mylist',
config:{
cls: 'tlist',
loadingText: 'Caricamento ...',
store: Ext.data.StoreManager.get('MyStore'),
itemTpl: '<div id="banner"></div><div id="box_menu">{introtext}</div>',
}
});
How can I open the second item of my App by clicking the "banner" div?
thank you.