0

radio buttons2つを形成する次のコードがあります。問題は、両方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

これはラジオグループSenchaの例の良い例です

于 2013-05-31T08:47:43.493 に答える