我怎么能像这个例子一样在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('##', ' ')
)));