Revision #10 has been created by Rohit Suthar on Jul 31, 2014, 10:27:08 AM with the memo:
corrections
« previous (#9)
Changes
Title
unchanged
using multiple radio button
Category
unchanged
Tips
Yii version
unchanged
Tags
unchanged
radiobutton, radio, button, activeRadioButton, multiple, value
Content
changed
[...]
```php
echo CHtml::radioButton('btn', false, array(
'value'=>'1',
'name'=>'btnname',
'uncheckValue'=>null
));
echo CHtml::radioButton('btn', false, array(
'value'=>'2',
'name'=>'btnname',[...]
));
//we can use it in activeRadioButton(), too
echo $form->radioButton($model, 'name', array(
'value'=>1,
'uncheckValue'=>null
));
echo $form->radioButton($model, 'name', array(
'value'=>2,
'uncheckValue'=>null
));
```[...]