Revision #2 has been created by Woil on Feb 11, 2011, 10:22:52 PM with the memo:
remove $ from $htmlOptions so that it comes up in search
« previous (#1)
Changes
Title
unchanged
htmlOptions explained for various controls.
Category
unchanged
Tips
Yii version
unchanged
Tags
unchanged
htmlOptions, chtml
Content
changed
[...]
<option>
<option>
</select>
~~~
To get attributes onto the options, add a sub-array called "options" to your $htmlOptions. For example to color each item in your drop down a different color this code:
```php
$items = array("1" => "first", "2" => "second");
$options["options"] = array("1"=>array("style" => "color:red"), "2"=>array("style"=>"color:blue"));[...]