Comparing
#9 with
#10
Revision #10 was created by
Rohit Suthar on Jul 31, 2014, 10:27:08 AM.
corrections
Content
[...]
```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
));
```[...]