0

$data->idonを使用しようとしていますTbButtonColumnが、エラーが発生します"Trying to get property of non-object"。はTbGridView正常に動作しています。私が間違っていることは何ですか?

View.php:

<?php  $this->widget('bootstrap.widgets.TbGridView',array(
    'type'=>'striped bordered condensed',
    'id'=>'profiles-grid',
    'dataProvider'=>$dataProvider,
    'columns'=>array(
        'id',
        array(
            'class'=>'bootstrap.widgets.TbButtonColumn',
            'template'=>'{create}',
            'buttons'=>array
            (
                'create' => array(
                    'label'=>'Criar Evento',
                    'icon'=>'plus',
                    'url'=>'Yii::app()->controller->createUrl("events/create", array("id"=>$data->id))', // Problem here on $data->id
                ),
            ),
        ),
    ),
)); ?>
4

2 に答える 2