In my controller I have this function:
Code:
activateListView: function (record) {
var listaView = this.getListaView();
listaView.setRecord(record);
Ext.Viewport.animateActiveItem(listaView, this.slideLeftTransition);
},
I know setRecord is used for form fields...but is there any way I could pass the data so it can be used in html or in the title? I know setRecord works only when used in 'name' config on a textfield, but I need it in title or in html, e.g. html: [ Title: {title} ]. Hope I'm not too confusing.
P.S.
activateListView function is used on itemtap in a list... what I'm trying to achieve is get data for one item from the list in a separate view.