你好,我有两个项目('作者'价格')和一个组合框
{
xtype: 'radiogroup',
defaultType: 'radiofield',
layout: 'hbox',
items: [
{
boxLabel: 'AUT',
name: 'author',
checked: true,
inputValue: '1',
}, {
boxLabel: 'PRI',
name: 'price',
inputValue: '2',
margin: '0 0 0 10'
}
]
},
{
xtype: 'combobox',
width: 350,
store: 'price.Book'
}
我想要在组合框中选择,然后从radiogroup项目' author'中检查为true。转移到radiogroup项目' price'
写什么:
select: function(combo) { ???}
谢谢!
答案 0 :(得分:1)
你需要这样的东西:
select: function(combo) {
combo.up('form').down('radio[name="price"]').setValue(true);
}