Difference between #3 and #5 of
Pjax GridView: refresh page after delete

Changes

Title changed

pPjax gGridvView delete button issu: refresh page after delete

Category unchanged

How-tos

Yii version unchanged

2.0

Tags unchanged

ajax button in CGridView,pjax,pjax gridview delete refresh

Content changed

[...]
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)
{
[...]
return $this->redirect(['index']);
}
```
 
 
 
``` 2. index.php (view file)
 
   ```    <?php
$this->registerJs("
$(document).on('ready pjax:success', function() {
[...]
});
");
   ?>    <?php Pjax::begin(['id' => 'my_pjax']); ?>
<div class="shop-index">
<?= GridView::widget([
[...]
]); ?>
</div>
   <?php Pjax::end(); ?>
 
   ```
 
6 0
4 followers
Viewed: 48 033 times
Version: 2.0
Category: How-tos
Written by: hehbhehb
Last updated by: CeBe
Created on: May 11, 2018
Last updated: 6 years ago
Update Article

Revisions

View all history