Comparing
#8 with
#10
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[...]
regards
nintriva