Yii2-Grid view showing wrong count of items
问题 I have grid view in which there are 8 items. But the count is displaying Showing 1-8 of 10 items. Controller code public function actionViewsetpdf($id) { $model = $this->findModel($id); $session = Yii::$app->session; $sqla = $session->get('result'); $session = Yii::$app->session; $cnt = $session->get('count'); $dataProvider = new SqlDataProvider([ 'sql' => $sqla, 'totalCount'=>$cnt, 'pagination' => [ 'pageSize' => 20, ], ]); return $this->render('viewsetpdf', [ 'dataProvider' => $dataProvider