0

Hello I am using bootstrap.widgets.TbSelect2 in Yii. You can see this link to check my form. https://www.diigo.com/item/p/qoaqepdzbsbbaqeqdzbcbrsdpa/bc91ebd999371bef68737b8320afed91

How to add the data in TbSelect2?

thank you.

4

1 回答 1

0

它是如此简单,只需为此生成一个数组

    $this->widget('bootstrap.widgets.TbSelect2', array(
            'asDropDownList' => true,
            'name'           => 'status',
            'data'           => array( // свои значения для option
                'active'  => 'Active',
                'pending' => 'Pending',
                'invited' => 'Invited',
                'deleted' => 'Deleted'
            ),

        )

);
于 2013-12-09T19:04:52.867 回答