0

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

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

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

谢谢你。

4

2 回答 2

1

bodyStyle不是无线电组的配置,它不扩展面板。相反,您应该只设置style配置或cls属性并通过 css 完成。

于 2013-02-22T06:50:33.817 回答
0

style应用到radiogroup未正确应用。
所以我申请cls了(正如@EvanTrimboli 建议的那样)

cls: 'custom_group'

在css文件中:

.custom_group .x-panel-body{
    background-color: #DDE5E9;
}
于 2013-07-19T11:21:21.003 回答