2

问:如何在 cgridview 中选中一些复选框?

状态:我用复选框做了一个gridview。但我不知道如何预先检查一些复选框。$current_reviewers 是一个数组。我想与 $current_reviewers 和复选框匹配以在 gridview 进行预检查。

<?php $this->widget('zii.widgets.grid.CGridView', array(
    'id'=>'acc-recei-grid',
    'dataProvider'=>$model->search_reviewerlist(),
    'filter'=>$model,
    'columns'=>array(
        array(
            'class' => 'CCheckBoxColumn',
            'selectableRows' => 2,
            'checkBoxHtmlOptions' => array(
                'name' => 'userids[]',
            ),
            'value'=>'$data->id',
            'checked'=>'(in_array($data->id, $current_reviewers) ? 1 : ""',
         ),
        'username',
        array(
            'type'=>'raw',
            'value'=>'$data->id',
            //'filter'=>array('style'=>'visible:none'), 
            //'headerHtmlOptions'=>array('style'=>'width:0px; display:none; border:none; textdecoration:none'),
            'htmlOptions'=>array('style'=>'display:none; border:none;', 'class'=>'user-id'),  
            //'header'=>false,
            //'filter'=>false,
        ),

    ),
)); ?>
4

2 回答 2

1

问题在于$current_reviewers变量,在作为值传递的 php 表达式中无法访问它checked。为此,您可以使用匿名函数并使用外部变量,请使用use关键字:

'checked'=>function($data, $row) use ($current_reviewers){
                return in_array($data->id, $current_reviewers);
}

检查use关键字的使用。

于 2012-10-22T11:55:19.267 回答
0

试试这个:

array(
            'id'=>'id',
            'class'=>'CCheckBoxColumn',
            'selectableRows' => '50',   
            'checked'=>'($data->id==$current_reviewers)?(1):(0)',   

        ),
于 2012-10-22T11:34:33.010 回答