我需要将类添加到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}',
]
],
]); ?>
提前致谢
答案 0 :(得分:49)
例如
[
'attribute' => 'name',
'contentOptions' => ['class' => 'text-center'],
'headerOptions' => ['class' => 'text-center']
],
contentOptions - 用于td单元格,headerOptions - 用于单元格