如何在Sencha中更改buttonLabel的颜色?
现在它显示为黑色,因此如何进行更改
我的代码:
xtype: 'button',
ui: 'plain',
text:'SAVED SEARCHES',
centered:true,
iconCls: 'search',
iconAlign:'center',
height:'100%',
width:'18%',
left:'29.68%',
cls: 'x-iconalign-top',
labelCls:"font-size: 100%;"
最佳答案
我尝试了属性,我找到了解决方案。我将labelCls
设置为自定义CSS类,并将其添加到app.css
文件中。
这是我添加到app.css中的类:
.customCls
{
color:red;
font-size: 100%;
}
并在js文件中设置:
labelCls:"customCls"