3

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

1 回答 1

3

似乎 YiiBooster 正在使用中。我希望你试试这个:

$array =  array(
            'active'  => 'Active',
            'pending' => 'Pending',
            'invited' => 'Invited',
            'deleted' => 'Deleted'
        )

$this->widget('bootstrap.widgets.TbSelect2', array(
    'asDropDownList' => false,
    'name' => 'YumProfile[projectlist]',
    'data' => $array,
    ...
    'htmlOptions' => array(
        'options' => array( // selected options by default
        'active' => array(
                'selected' => true,
            )
        )
    ),
)
);

我也对Yii Select2 Extension做了同样的事情,但方法有点不同。

于 2013-07-21T16:06:27.327 回答