Friday, June 15, 2012

Make RadioButton List in Yii framework

Radio Button in yii framework is simple using radioButtonList function in CActiveForm. But how can we make a proper view to the design and get nice visual in yii.

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'=>'&nbsp;',
                 '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.