Add Link to ExtJS Image Component
Add href to ExtJS Image component. It's layout result is better than button with src or plain HTML.
JavaScript
Ext.onReady(function () {
Ext.create('Ext.Img', {
renderTo: Ext.getBody(),
src: 'https://cdn1.iconfinder.com/data/icons/yooicons_set01_socialbookmarks/512/social_google_box.png',
//defines the element that wraps around the image
autoEl: {
tag: 'a',
href: 'http://www.google.com',
target: '_blank'
//add any other attributes to the 'a' tag as needed
}
});
});