Answer the question
In order to leave comments, you need to log in
Yii2 DataProvider Pagination how to open the last page by default?
'pagination' => [
'pageSize' => 20,
],
Answer the question
In order to leave comments, you need to log in
$dataProvider = new ActiveDataProvider([
'query' => $query,
'pagination' => [
'pageSize' => 20
],
]);
//Этот код располагать ниже всех операций с $query
if(!Yii::$app->request->get('page')){
$dataProvider->pagination->page = ceil($dataProvider->getTotalCount() / $dataProvider->pagination->pageSize) - 1;
}
https://www.yiiframework.com/doc/api/2.0/yii-data-...
Compute the last one by offset and count
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question