0

如何更改 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%;"
4

1 回答 1

3

我已经尝试过使用属性,我找到了解决方案。我设置labelCls了一个自定义 css 类,我已将其添加到app.css文件中。

这是我添加到 app.css 中的类:

.customCls
{

color:red;
font-size: 100%;
}

在我设置的js文件中:

labelCls:"customCls"
于 2013-05-09T17:25:52.177 回答