extjs 单选框赋值
时间: 2023-11-06 10:18:08 浏览: 105
EXTJS checkbox赋值
3星 · 编辑精心推荐
可以使用 Ext.form.RadioGroup 组件来创建单选框,并使用 setValue() 方法来设置单选框的值。例如:
```
var radioGroup = Ext.create('Ext.form.RadioGroup', {
fieldLabel: '单选框',
columns: 3, // 设置列数
items: [
{ boxLabel: '选项一', name: 'rb', inputValue: '1' },
{ boxLabel: '选项二', name: 'rb', inputValue: '2' },
{ boxLabel: '选项三', name: 'rb', inputValue: '3' }
]
});
// 设置单选框的值为 2
radioGroup.setValue({ rb: '2' });
```
阅读全文