EXTJS Radio Group背景颜色为白色

时间:2013-02-22 06:30:04

标签: extjs radio-button radio-group

我正在尝试将我的广播组的背景颜色设置为。但是,以下代码的背景颜色仍为白色:

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'}
]

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

谢谢。

2 个答案:

答案 0 :(得分:1)

bodyStyle不是广播组的配置,它不会扩展面板。相反,您应该只设置style配置或cls属性,并通过css执行此操作。

答案 1 :(得分:0)

应用于style

radiogroup未正确应用 所以我已经应用cls(正如@EvanTrimboli建议的那样)

cls: 'custom_group'

在css文件中:

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