【发布时间】:2013-07-19 21:26:17
【问题描述】:
我如何在 yii 中设置 yii-select2 中的预选数据,就像这个例子
http://ivaynberg.github.io/select2/index.html#locked-selections
这是我的代码,我想为预选数据显示另一个数组
$this->widget('bootstrap.widgets.TbSelect2', array(
'asDropDownList' => false,
'name' => 'YumProfile[projectlist]',
'options' => array(
'multiple' => true,
'data' => $array,
'width' => '40%',
'tokenSeparators' => array('##', ' ')
)));
【问题讨论】:
标签: twitter-bootstrap yii jquery-select2