Bạn cũng có thể thêm các cột vào chế độ xem lưới với giá trị từ một hàm ẩn danh như được mô tả tại đây http://www.yiiframework.com/doc-2.0/yii-grid-datacolumn.html# $ value-detail. Ví dụ:bạn có thể hiển thị tên tác giả như thế này trong chế độ xem lưới:
<?= GridView::widget([
'dataProvider'=>$dataProvider,
'filterModel'=>$searchModel,
'columns'=>[
[
'attribute'=>'author.name',
'value'=>function ($model, $key, $index, $column) {
return $model->author->name;
},
],
//...other columns
]);
?>
bạn cũng có thể trả lại một liên kết html đến chế độ xem chi tiết của một tác giả như sau:
Hàm//...
'columns'=>[
[
'attribute'=>'author',
'value'=>function ($model, $key, $index, $column) {
return Html::a($model->author->name, ['/author/view', 'id'=>$model->author->id]);
},
],
//...
],
//...