I need to give all dropDownList in _开发者_Go百科form and _search the same width. How can I do that?
Thanks.
One thing you can do is include the following css at the top of either partial.
<style> select { width: 8em } </style>
echo CHtml::dropDownList("id", $arr_bit, $list, array('id' => "id",
'onchange' => 'send(this.id, this.value)',
'style'=>'height: auto; width: auto;'
)
);
精彩评论