This is how it should look like:

enter image description here

if this is possible then share a piece of code or a link

    1 answer 1

    For example, you can:

    <?= GridView::widget([ 'dataProvider' => $dataProvider, ... , 'columns' => [ ... [ 'attribute' => 'your_attribute', 'format' => 'html', 'value' => function ($model) { $otherDataProvider = ...; return GridView::widget([ 'dataProvider' => $otherDataProvider, ... ]); }, ], ... ], ]); ?> 
    • thanks, I’ll check it out, but I’m already code to make it work - perfect