You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
строку
Разбивка записей страницу и сортировка могут быть настроены следующим образом:
можно дополнить путем до контроллера
\yii2-tutorial\yii2-app-advanced\backend\controllers\InterviewController.php
а код контролера поменять на
public function actionIndex()
{
/* это можно удалить */
$dataProvider = new ActiveDataProvider([
'query' => Interview::find(),
]);
/* это можно удалить */
/*и раскомментировать это
$dataProvider = new ActiveDataProvider([
'query' => Interview::find(),
'pagination' => [
'pageSize' => 50,
],
'sort' => [
'defaultOrder' => [
'name' => SORT_ASC,
]
]
]);
*/
return $this->render('index', [
'dataProvider' => $dataProvider,
]);
}