This is how we can make a radiobutton list in yii with horizontal view. In the default the view will be vertical alignment.
And in your view just use this code like this :
<?php echo $form->radioButtonList($model,'GENDER',array('2'=>'Females','1'=>'Males'),array( 'separator'=>' ', 'labelOptions'=>array( 'style'=>'display: inline; margin-right: 10px; font-weight: normal;') )?>That's all and you can make a better view of using radioButtonList in yiiframework.
Thanks bro!
ReplyDelete