本文介绍了需要选择框的列表-在yii中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要在yii中进行多项选择的列表框,我具有表单区域的代码但将其作为字段中的数组"一词保存到数据库中,如何处理这个问题?

I need listbox of multiple selection in yii, i have code of form areabut its saving to database as a word "Array" in field, How to handlethis problem?

如何在查看和更新​​以及网格视图的同时取回

how to get back while view and update and grid view also

<?php echo $form->dropDownList($model,'clients', 
  CHtml::listData(client::model()->findAll(array('order'=>'id')), 'id', 'name'),
     array('empty'=>'','multiple'=>'multiple','style'=>'width:400px;','size'=>'10'));
?>

谢谢.

推荐答案

对我来说,这是

'multiple'=>true

您的代码必须是这样的:

Your code must be something like that:

<?php echo $form->dropDownList($model,'clients', 
  CHtml::listData(client::model()->findAll(array('order'=>'id')), 'id', 'name'),
     array('empty'=>'','multiple'=>true ,'style'=>'width:400px;','size'=>'10'));
?>

这篇关于需要选择框的列表-在yii中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 14:06