I have a gridview inside the modal popup. I tried to sort the grid view columns inside the model popup. i tried with Pjax but it changes the page url. I want to sort gridview in the modal popup without changing the url. Code:
<?php \yii\widgets\Pjax::begin();
echo GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'id' => 'data_lines_tables',
'columns' => [
[
'name',
'id'
]
]
]);
\yii\widgets\Pjax::end();?>