Yii中的CCheckBoxColumn在widget中的用法

时间:2021-03-15 19:10:28

'columns'=>array(
        array(
            'class'=>'CCheckBoxColumn',
            'id'=>'userCheckBox',
            'selectableRows'=>2,

    'headerTemplate'=>'全选{item}'
        ),
        'id',
        'username',
        'password',
        'email'

)(1)、当我们在widget中使用CCheckBoxColumn时, 其属性selectableRows0, 1, >=2(大于等于2的一个值)

  0: 所有的checkBox都是不可选的

  1: 只能选择一个checkBox

  >=2: 可以选择多个checkBox, 并且在头部会有一个全选的checkBox

(2)、headerTemplate属性

  个性化checkBox