If you use the pjax option:

GridView::widget([ 'pjax' => true 

and if you add the Html :: a link with the target = _blank parameter to the columns in one of the fields, clicking on it will process pjax and the page will not open in a new tab. You can, of course, navigate using js onclick window.open, but I would like to have a standard link .. How to do this?

    1 answer 1

    The solution was found, you need to add the parameter data-pjax = 0 to the link:

     return Html::a('Text', 'link', ['target' => '_blank', 'data-pjax' => '0']);