I would like to add a button in the fieldset title. Maybe something like this:
var btn = Ext.create('Ext.Button', {
text: 'my button'
});
...
xtype: 'fieldset',
title: 'my title' + btn
Is something like this possible. I really don't want to use a delegate to reference html for the tap event. Any ideas?