Comparing
#21 with
#22
Revision #22 was created by
Lensi on Mar 23, 2011, 1:44:39 PM.
Added end-parenthesis to '(Select a gender' in dropdownlist
Content
[...]
This example will avoid the dropdownlist to be blank when no value, outputing some proper information to the user
```php
<?php echo CHtml::dropDownList('listname', $select,
array('M' => 'Male', 'F' => 'Female'),
array('empty' => '(Select a gender)'));
```
***[...]