GridView row as link, except action column items in Yii2

后端 未结 8 2076
忘了有多久
忘了有多久 2021-01-02 06:20

When i use the below code it overrides the action-column delete/update links.

\'rowOptions\' => function ($model, $key, $index, $grid) {
    return [
             


        
8条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-02 07:00

    please use this function:

    $(document).on('click','td', function(e) {
                   var id = $(this).closest('tr').data('id');
                   if(e.target == this)
                       location.href = id;
     });
    

    Otherwise pagination with Pjax will break your links!

提交回复
热议问题