如何在GridView中向标记添加类

时间:2015-04-09 14:02:15

标签: gridview yii2

我需要将类添加到GridView的td。 我找到了renderTagAttributes(),但我找不到如何使用它的示例。 你能解释一下这个功能还是给我提供其他选择?

我的网格视图:

 <?= GridView::widget([
    'dataProvider' => $dataProvider,
    'filterModel' => $searchModel,
    'columns' => [
        ['class' => 'yii\grid\SerialColumn'],
        'id',
        'name',
        'price',
        'quantity',
        'created_at',
        [
            'class' => 'yii\grid\ActionColumn',
            'template' => '{update} {delete}',
        ]
    ],
]); ?>

提前致谢

1 个答案:

答案 0 :(得分:49)

例如

[
    'attribute' => 'name',
    'contentOptions' => ['class' => 'text-center'],
    'headerOptions' => ['class' => 'text-center']
],

contentOptions - 用于td单元格,headerOptions - 用于单元格

参考:Yii2 Docs | Column classes in GridView