Ext.define('Pandora.view.SongInfo', { extend: 'Ext.panel.Panel', alias: 'widget.songinfo', border: false, tpl: '

About {artist}

{description}

', initComponent: function() { this.dockedItems = [{ xtype: 'container', layout: { type: 'hbox', align: 'middle', pack: 'end' }, height: 100, items: [{ xtype: 'component', width: 200, itemId: 'songdescription', tpl: '

{artist}

{name}

{album}

' }, { xtype: 'button', text: 'menu', action: 'song-menu' }] }]; this.callParent(); }, update: function(record) { var data = record ? record.data : {}; this.down('#songdescription').update(data); this.callParent([data]); } });