php - How do I add inline css to dropdown in Yii? -
this code:
<?php echo $form->dropdownlist($model, 'type', chtml::listdata($ab->type, 'id', 'name'), array('class' => 'edit'), array('width:165px')); ?>
i trying add inline css dropdown, example not work. why ?
it should this:
<?php echo $form->dropdownlist($model, 'type', chtml::listdata($ab->type, 'id', 'name'), array('class' => 'edit', 'style' => 'width:165px')); ?>
Comments
Post a Comment