加载中...

Yii 控制dropdownlist / select 控件的宽度和 option 的宽度


默认情况下,
option的宽度会由options中最宽的元素决定,并且同时决定着select控件的宽度

在Yii中,如果需要自定义select控件的宽度,可以用 htmlOptions定义,如下:
<td colspan=1>
<?php echo CHtml::label('新闻来源: ', ''); ?>
<?php echo CHtml::dropDownlist('source',
$currentSelectSource,
CHtml::listData($modelSource, 'domain_hash', 'site_name'),
array('empty'=>'-- 全 部 --','style'=>'width:200px;')
);?>
</td>
如果要自定义option的宽度,就没办法了,只能写CSS来定义。
<style>
form#form option{
width:200px;
}
</style>





还没有评论.