我正在使用无线电组是和否。我希望将点击值发送到服务器。如何实现?
我的代码:
{
fieldLabel: 'Striping',
xtype: 'radiogroup',
columns: [50, 100],
items: [{
boxLabel: 'Yes',
name: 'rb',
id: 'stYes',
/*checked: true,*/
inputValue: '1',
listeners: {
click: function () {
alert("Click 2!");
}
}
}, {
boxLabel: 'No',
name: 'rb',
id: 'stNo',
inputValue: '2',
listeners: {
click: function () {
alert("Click 2!");
}
}
}]
}