yii - The attribute must be specified in the format of "Name:Type:Label", where "Type" and "Label" are optional -


i have 2 models/mysql tables: user , truck. in truck table have row user_id , in truck _form.php created dropdownlist field user_id populating user table. code:

<?php echo $form->dropdownlist($model,'user_id', chtml::listdata(user::model()->findall(), 'id', 'name')); ?> 

and works fine, manage list users in dropdown. when save form data should redirect me cdetailview instead error:

"the attribute must specified in format of "name:type:label", "type" , "label" optional."

could tell me what's causing problem, tried set relations , still error.. thanks


Comments

Popular posts from this blog

database - VFP Grid + SQL server 2008 - grid not showing correctly -

jquery - Set jPicker field to empty value -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -