Latest news:
Sahih al-Bukhari (সহীহ বুখারী) is a free Hadith application for android. This application is advertisement free. Download now https://play.google.com/store/apps/details?id=com.akramhossin.bukharisharif
In this article we will learn how to use Pjax for Yii2 grid view sorting and pagination.
Pjax is a jquery plugin which progressively enhances website page loads and behave more like single-page web application.
We need to these steps to enable Pjax in yii2 web page
Below code is the example of how to use pjax for yii2 grid view sorting and pagination
use yii\widgets\Pjax
Add above line in the beginning of your view.
Pjax::begin();
GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class' => 'yiigridSerialColumn'],
'id',
'branch:ntext',
'version:ntext',
'release_date:ntext',
[
'class' => 'yiigridActionColumn',
'template' => '{view}',
],
],
]);
Pjax::end()
Views : 1833