Yii 2: Pjax + Gridview delete does not send ajax request

9.1k views Asked by At

I am using Pjax with Gridview and I want all my action button do ajax. By default, they dont, so I googled and found way to remove data-pjax = 0. But still , there are no ajax requests, all of them are regular requests.

Lots people are having this problem and I couldnt find the solution as well.

I've followed:

My code:

<?php Pjax::begin(['id' => 'employee-timesheet-grid-id', 'timeout' => false, 'enablePushState' => false, 'clientOptions' => ['method' => 'POST']]) ?>
<?= GridView::widget([
    'dataProvider' => $dataProvider,
    'columns' => [
        ['class' => 'yii\grid\SerialColumn'],
        [
            'label' => 'Employee',
            'value' => function ($model) { 
                return $model->employeePayRate->employeeName; 
            },
        ],
        [
            'class' => 'yii\grid\ActionColumn', 
            'template' => '{view} {delete}',
            'buttons' => [
                'delete' => function ($url , $model) {
                    return Html::a('<span class="glyphicon glyphicon-trash"></span>', $url, 
                        ['data-confirm' => 'Are you sure you want to delete this item?', 'data-method' =>'POST'] );
                }
            ],
            'urlCreator' => function ($action, $model, $key, $index) {
                if ($action === 'view') {
                    $url = Url::to(['employee-time-sheet/view', 'id' => $model->id]);
                    return $url;
                } else if ($action === 'delete') {
                    $url = Url::to(['employee-time-sheet/delete', 'id' => $model->id]);
                    return $url;
                }
            }
        ],
    ],
]); ?>
<?php Pjax::end(); ?>

Have anyone found the solution for this issue yet ?

2

There are 2 answers

0
GAMITG On BEST ANSWER

Try this. ( my working code )

First register following JavaScript on above Gridview views file Here i'm uses the bootbox confirm box.

$this->registerJs("

$(document).on('ready pjax:success', function () {
  $('.ajaxDelete').on('click', function (e) {
    e.preventDefault();
    var deleteUrl     = $(this).attr('delete-url');
    var pjaxContainer = $(this).attr('pjax-container');
    bootbox.confirm('Are you sure you want to change status of this item?',
            function (result) {
              if (result) {
                $.ajax({
                  url:   deleteUrl,
                  type:  'post',
                  error: function (xhr, status, error) {
                    alert('There was an error with your request.' 
                          + xhr.responseText);
                  }
                }).done(function (data) {
                  $.pjax.reload({container: '#' + $.trim(pjaxContainer)});
                });
              }
            }
    );
  });
});

");

And below code for Gridview

    <?php
\yii\widgets\Pjax::begin([
    'id' => 'pjax-list',
]); ?>
<?= GridView::widget([
    'dataProvider' => $dataProvider,
    'filterModel'  => $searchModel,
    'columns'      => [
        ['class' => 'yii\grid\SerialColumn'],
        'stu_category_name',
        [
            'class'    => 'yii\grid\ActionColumn',
            'template' => '{view} {delete}',
            'buttons'  => [
                'view'   => function ($url, $model) {
                    return ((Yii::$app->user->can("/student/stu/view"))
                        ? Html::a(
                            '<span class="glyphicon glyphicon-eye-open"></span>',
                            $url,
                            ['title' => Yii::t('app', 'View'),]
                        )
                        : '');
                },
                'delete' => function ($url, $model) {
                    return ((Yii::$app->user->can("/student/stu/delete"))
                        ? Html::a(
                            '<span class="glyphicon glyphicon-trash"></span>',
                            false,
                            [
                                'class'          => 'ajaxDelete',
                                'delete-url'     => $url,
                                'pjax-container' => 'pjax-list',
                                'title'          => Yii::t('app', 'Delete')
                            ]
                        )
                        : '');
                }
            ],
        ],
    ],
]); ?>
<?php \yii\widgets\Pjax::end(); ?>

Thanks to @skworden for supporting for this solution. Yii forum link for this solution. click here

1
shivani parmar On

Don't set data-method and data-confirm because Pjax not supported that.

After removing both still not workign,yes because of below code of your controler does not allow Pjax get Request.

return [
            'verbs' => [
                'class' => VerbFilter::className(),
                'actions' => [
                    'delete' => ['post'], // **remove this**
                ],
            ],
        ];

You need to use Pjax Post Method Apply this in Your Pjax

'clientOptions' => ['method' => 'POST']

For Alert Box You need to do some extra stuff

Full Way How to Do.

Page 1. That Contain Grid View

<?= GridView::widget([
        'dataProvider' => $dataProvider,
        'filterModel' => $searchModel,
        'layout' => "{pager}\n{summary}\n{items}\n{pager}",
        'columns' => [
            ['class' => 'yii\grid\CheckboxColumn'],
            '_id',
            'title',
            'notification:ntext',
            'date',
            ['class' => 'yii\grid\ActionColumn',
             'template' => '{view} {feedback}',
             'buttons' =>  ['feedback' => function ($url, $model, $key) {
                                return  Html::a('<i class="glyphicon glyphicon-comment"></i>'.$model->totalfeedback,'#');
                            },
                            'view' => function($url,$model,$key){

                                return $this->render('_viewLink',['model'=>$model]);

                        },
                            ],
             ]

            ],
    ]); ?>

Page 2. That Conatin a link and Pjax For each link View,Edit,Delete

echo Html::a('<span class="glyphicon glyphicon-eye-open"></span>',URL::to(['view','id'=>$model->_id]),['id' => 'view_link']);
Pjax::widget(['id'=>'view_member', 'linkSelector' => '#view_link','options'=>['tag'=>'span']]);
echo '&nbsp';
echo Html::a('<span class="glyphicon glyphicon-pencil"></span>',URL::to(['update','id'=>$model->_id]),['id' => 'edit_link']);
Pjax::widget(['id'=>'view_member', 'linkSelector' => '#edit_link','options'=>['tag'=>'span']]);
echo '&nbsp';
echo Html::a('<span class="glyphicon glyphicon-trash"></span>',
           URL::to(['delete','id'=>$model->_id]),
           ['id' => 'delete_link']);
Pjax::widget(['id'=>'view_member', 'linkSelector' => '#delete_link',
'options'=>['tag'=>'span'],'clientOptions' => ['method' => 'POST']]);