我想知道如何在单选按钮中设置“圆圈”的样式,以便我更容易看到它们。我希望它们的边框具有一定的厚度和颜色。这是我所拥有的:
{
xtype: "radiogroup",
fieldLabel: "Eligibility Verification",
labelCls: 'labelstyle',
// fieldCls: 'qrgtextfieldstyle',
fieldStyle: {
border: '1px solid black'
},
labelWidth: 250,
width: 450,
vertical: false,
fieldCls: 'blahblah',
defaults: {xtype: "radiofield",name: "eligverif"},
items: [
{ boxLabel: 'Manual', bind: {
value: '{qrg.eligVerifManual}'
}},
{ boxLabel: 'Electronic', bind: {
value: '{qrg.eligVerifElectronic}'
}/*, checked: true */}
]
}
我几乎什么都试过了。
无线电场样式问题