0

我有以下代码可以形成两个radio buttons。问题是两者都radio buttons可以同时选择。如何修复我的代码?

{
   xtype: 'radio',
   checked: true,
   fieldLabel: '<?= $this->fail_select ?>',
   boxLabel: '<?= $this->i_am_not ?>',
   name: 'option1',
   inputValue: 'option1',
   height:20
   }, {
        xtype: 'radio',
        fieldLabel: '',
        labelSeparator: '',
        boxLabel: '<?= $this->something_else ?>',
        name: 'option2',
        inputValue: 'option2',
        height:32
   }
4

1 回答 1

0

这是radiogroup Sencha例子的好例子

于 2013-05-31T08:47:43.493 回答