Revision #4 has been created by hehbhehb on May 11, 2018, 4:06:08 AM with the memo:
change
« previous (#3) next (#5) »
Changes
Title
unchanged
pjax gridview delete button issue
Category
unchanged
How-tos
Yii version
unchanged
2.0
Tags
unchanged
ajax button in CGridView,pjax,pjax gridview delete refresh
Content
changed
Normally, after clicking the delete button in gridview, the record will be deleted and the page will refresh, but the page number in query string is lost. This is not always the case we expect.
How to refresh current page with pjax after deleting the record? It seems there is no very simple solution.
1.
Controller file
```
public function actionDelete($id)
{[...]
2. index.php(view file)
```
<?php
$this->registerJs("
$(document).on('ready pjax:success', function() {
$('.pjax-delete-link').on('click', function(e) {
e.preventDefault();[...]