gpt4 book ai didi

extjs - 如何更改 extjs 中按钮的填充?

转载 作者:行者123 更新时间:2023-12-04 05:29:03 25 4
gpt4 key购买 nike

是否可以动态更改放置在 FormPanel 内的按钮的填充?

谢谢,
Y_Y

最佳答案

您可以使用 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!');
}
});

关于extjs - 如何更改 extjs 中按钮的填充?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12864645/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com