Chtml::dropdownlist


echo CHtml::dropDownList($model,'Category',array( 'Yacht'=>'Yacht', 'Boat'=>'Boat', 'Ship'=>'Ship', 'Saddleboat'=>'Saddleboat', 'Rubberboat'=>'Rubberboat', 'Others'=>'Others'));

       

the code above gives me the error below:

Object of class Vessel could not be converted to string

Not sure whats wrong :(

Try CHtml::activeDropDownList().

Moved from General Discussions for Yii 2.0 to General Discussion for Yii 1.1.x.

Thanks Keith! works