我正在尝试将我的广播组的背景颜色设置为。但是,以下代码的背景颜色仍为白色:
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'}
]
有没有办法解决这个问题。非常感谢您的帮助。
谢谢。
答案 0 :(得分:1)
bodyStyle
不是广播组的配置,它不会扩展面板。相反,您应该只设置style
配置或cls
属性,并通过css执行此操作。
答案 1 :(得分:0)
style
的 radiogroup
未正确应用
所以我已经应用cls
(正如@EvanTrimboli建议的那样)
cls: 'custom_group'
在css文件中:
.custom_group .x-panel-body{
background-color: #DDE5E9;
}