Thursday, 18 December 2014

CDetailVIEW in YII -- Make font bold

Yii::CDetailView-> Make the value font bold
This is just the simple solution:
Change your data type to html.
array(
                    'label'=>'Leave Type',
                    'type'=>'html',
                    'value'=>'<b>'.$model->leaveCode->leave_type.'</b>',
                ),

No comments:

Post a Comment