EXTJS无线电组背景颜色为白色

问题描述:

我试图将我的无线电组的背景颜色设置为。但是对于以下代码,背景颜色仍为白色:EXTJS无线电组背景颜色为白色

xtype: 'radiogroup', 
hideLabel: true, 
id: 'rtse1', 
disabled: true, 
width: 255, 
bodyStyle: 'background-color: #DDE5E9;', 
style: 'padding-left:85px', 
items: [ 
    {boxLabel: 'Static', name: 'rb-auto17', inputValue: 'Y', checked: true}, 
    {boxLabel: 'Default', name: 'rb-auto17', inputValue: 'N'} 
] 

有没有办法解决这个问题。您的帮助表示感谢。

谢谢。

bodyStyle不是一个无线电组的配置,它不扩展面板。相反,你应该只设置style配置,或cls属性,并通过CSS来做到这一点。

style适用于radiogroup未正确应用。
所以我申请cls(如@EvanTrimboli建议)

cls: 'custom_group' 

而且在css文件:

.custom_group .x-panel-body{ 
    background-color: #DDE5E9; 
}