1

因为在表单中将 CCheckBoxColumn 添加到我的 vgridview 时,作为回报,我没有用于处理复选框数据的精确索引。因此,我尝试添加“uncheckValue”,但无法将其链接到表的参考值。有没有办法访问当前行的这个值?(我的代码中的 $data->reference 返回一个未定义的变量)。

$this->widget('zii.widgets.grid.CGridView', array(
'id'=>'gview',
'dataProvider'=>$dataProvider,
'columns'=>array(
    'client',
    'reference',
    array(
        'class'=>'CCheckBoxColumn',
        'id'=>'CB',
        'selectableRows'=>2,
        'checkBoxHtmlOptions'=>array(
            'uncheckValue'=>$data->reference, ),

    )),));

Tks 任何人都可以让我上路(如果有的话......)

4

1 回答 1

1

我终于找到一种方法是扩展CCheckBoxColumn。在这段代码中,我可以访问 $data。现在我的表单返回复选框,他的“名字”作为我表的“参考”列,所以我可以做进一步的批处理。uncheckValue 隐藏字段不适合,因为它只为未选中字段(!)提供索引。

我相信这段代码不应该留在视图中,而是在扩展中......仍然欢迎任何评论......

Yii::import('zii.widgets.grid.CCheckBoxColumn');
class LIndexCheckBoxColumn extends CCheckBoxColumn {

public $linkId; 

public function renderDataCellContent($row,$data)
    {
    if($this->value!==null)
        $value=$this->evaluateExpression($this->value,array('data'=>$data,'row'=>$row));
    else if($this->name!==null)
        $value=CHtml::value($data,$this->name);
    else
        $value=$this->grid->dataProvider->keys[$row];

    $checked = false;
    if($this->checked!==null)
        $checked=$this->evaluateExpression($this->checked,array('data'=>$data,'row'=>$row));

    $options=$this->checkBoxHtmlOptions;
    //$name=$options['name'];
    $varLink=$this->linkId;
    $name=$data->$varLink;
    unset($options['name']);
    $options['value']=$value;
    $options['id']=$this->id.'_'.$row;
    echo CHtml::checkBox($name,$checked,$options);
}

    }

$this->widget('zii.widgets.grid.CGridView', array(
    'dataProvider'=>$dataProvider,
    'columns'=>array(
        'client',
        'reference',
        array(
            'class'=>'LIndexCheckBoxColumn',
            'id'=>'cb',
            'selectableRows'=>2,
            'linkId'=>'reference',
    )),));
于 2012-05-01T09:07:54.403 回答