ExtJS 3 Checkbox BoxLabel字体

时间:2011-12-12 19:59:35

标签: extjs checkbox styles label

我想知道是否可以更改checbox盒标签的样式(特别是字体)。

Ext.getCmp('variablesAttributesPanel').add({xtype: 'checkbox',  id: variables[j].getTitle() + 'Checkbox', boxLabel: variableTitle, width: 362, x: 20,   y: (j *40 + 20), listeners: {check: function(){createRequestURL(i)}}});

这是在具有绝对布局的FormPanel中进行的。

谢谢!

ExtJS 3.3

2 个答案:

答案 0 :(得分:1)

老问题,但我不介意。

labelStyle在3.4中不起作用。

我使用此解决方法:

boxLabel: '<span style="font-size: 12px;">' + 'My Label Text' + '</span>'

答案 1 :(得分:0)

尝试在复选框配置中使用labelStyle or labelCls