This is how it should look like:
if this is possible then share a piece of code or a link
For example, you can:
<?= GridView::widget([ 'dataProvider' => $dataProvider, ... , 'columns' => [ ... [ 'attribute' => 'your_attribute', 'format' => 'html', 'value' => function ($model) { $otherDataProvider = ...; return GridView::widget([ 'dataProvider' => $otherDataProvider, ... ]); }, ], ... ], ]); ?> Source: https://ru.stackoverflow.com/questions/704336/
All Articles