I am new in the ext js development. I need a extjs button with icon and text on it. The button behavior (onmouseover , onclick etc) should be same as extjs button. I am using icon from svg file.
Below are the steps that i am trying, but it does not behave like extjs button:
- Panel.js :
xtype: 'button', iconCls: 'svgImage', minWidth: 20, maxWidth: 40, localized: { text: 'localtext' }
Here even if i add the style:'background-color:#eeefea' for the xtype it will disappear the image from the button.
I am thankful, if anyone face the same issue and having solution for the same.