Monster
Monster

Reputation: 189

Using style of EXT JS buttons for basic HTML button

I'm using an HTML basic button in an EXT JS application. For a specefic need, i was forced to use an HTML basic button. My problem is that i want to use the same style of EXTJS button (The component Ext.button.Button with all 'special' style events like : on click, on hover ...) Is there any way to do it like this : tired some think like :

<input type="button" class="myEXTJSButtonStyle" value="Chargement" id="id"/>

Upvotes: 0

Views: 363

Answers (1)

Justin Paul Pa&#241;o
Justin Paul Pa&#241;o

Reputation: 936

In Google Chrome, right click thee ExtJS button and select Inspect Element. From there you will see all the styles that had been applied to it. You can then copy them to your own stylesheet.

Upvotes: 1

Related Questions