是否可以动态更改放置在FormPanel内的按钮的填充?
谢谢, Y_Y
答案 0 :(得分:3)
您可以使用CSS更改填充
Ext.create('Ext.Button', {
text: 'Click me',
renderTo: Ext.getBody(),
cls: 'my-btn'
});
/* The button wrapper */
.my-btn.x-btn {
padding: 5px;
}
/** or the button itself */
.my-btn.x-btn button {...}
或者你可以用JS
破解它Ext.create('Ext.Button', {
text: 'Click me',
renderTo: Ext.getBody(),
padding: 10,
handler: function() {
alert('You clicked the button!');
}
});