Skip to main content

Posts

Showing posts from December, 2016

Make display inline radioButtonList on Yii Framework

By Default Yii display radioButtonList not inline like this : $form->radioButtonList($model, 'gender', array('M' => 'Male', 'F' => 'Female')) Change Code like this $form->radioButtonList($model, 'gender', array('M' => 'Male', 'F' => 'Female'), array( 'labelOptions' => array('style' => 'display:inline'), 'separator' => ' ')) And Voila ... ! Thank's