Skip to content

Instantly share code, notes, and snippets.

@c006
Created January 17, 2016 05:30
Show Gist options
  • Save c006/b534cac7ee815721c46a to your computer and use it in GitHub Desktop.
Save c006/b534cac7ee815721c46a to your computer and use it in GitHub Desktop.
Yii2 Gridview joinwith example
<?= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
'id',
'service_name',
'flat_rate',
/* Join width example */
[
'attribute' => 'country_id',
'label' => 'Country',
'value' => 'country.char2',
],
'position',
'active',
['class' => 'yii\grid\ActionColumn',
'template' => '<span class="nowrap">{update} {delete}</span>',
],
],
]); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment