Yii2 - GridView - 如何将 table 数据包含在 html 标签中?
Yii2 - GridView - How to enclose the table data within html tags?
我是yii2的新手。我正在尝试将 GridView 的 table 数据包含在锚标记内。
<?= GridView::widget([
// is there any property that can be set to achieve this?
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class'=>'yii\grid\SerialColumn'],
['attribute' => 'customer_user_name2',],
],
]); ?>
数据应该在 html 页面中呈现如下
<td> <!-- how to add this? --> <a>data</a> </td>
谢谢。
我相信他会帮助你:
http://www.bsourcecode.com/yiiframework2/gridview-in-yiiframework-2-0/#gridview-table-options
如何在 Gridview 中添加 table 和 table 行。
我是yii2的新手。我正在尝试将 GridView 的 table 数据包含在锚标记内。
<?= GridView::widget([
// is there any property that can be set to achieve this?
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class'=>'yii\grid\SerialColumn'],
['attribute' => 'customer_user_name2',],
],
]); ?>
数据应该在 html 页面中呈现如下
<td> <!-- how to add this? --> <a>data</a> </td>
谢谢。
我相信他会帮助你: http://www.bsourcecode.com/yiiframework2/gridview-in-yiiframework-2-0/#gridview-table-options 如何在 Gridview 中添加 table 和 table 行。