I have this code:
$dataProvider,
\'filterModel\' => $searchModel,
\'columns\' => [
[\
try
return Html::a('link_text','site/index');
https://github.com/yiisoft/yii2/blob/master/framework/helpers/BaseHtml.php
I got the solution from Samdark, contributor of yii. need to use format=>'raw':
...
'format' => 'raw',
'value'=>function ($data) {
return Html::a(Html::encode("View"),'site/index');
},
need to use Html::encode() to ecape XSS
Use 'format' => 'raw'
instead of 'format' => 'url'
.
I think I got the solution:
The code:
'value'=>function ($data) {
return Html::url('site/index');
},
Should be a bit modified. Let say your field name in array 'country', then code should be like this:
'value'=>function ($data) {
return Html::a($data['country'], ['site/index']);
},
So instead of Html::url I used Html::a and added value of the hyperlink as $data['country']. Hope this helps.
Try below code.
GridView::widget([
'dataProvider' => $dataProvider,
'rowOptions' => function ($model, $index, $widget, $grid) {
return [
'id' => $model['id'],
'onclick' => 'location.href="'
. Yii::$app->urlManager->createUrl('controllerName/view')
. '?id="+(this.id);'
];
},
...
])
use raw format
<?php echo GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
[
'label'=>'url',
'format' => 'raw',
'value'=>function ($data) {
return Html::a('there is your label',['site/index']);
},
],
['class' => 'yii\grid\ActionColumn'],
],
]); ?>