$model = new UserEditForm();
$userId = (int)Yii::$app->request->get('id');
$model->load(User::findOne($userId));
return $this->renderAjax('_form-edit', [
'model' => $model,
]);
$userId = (int)Yii::$app->request->get('id');
/*
*переделать в метод, который будет возвращать или модель
*или сообщение о том, что нужной записи в базе нет
*
*/
$model =User::findOne($userId);
if($model->load($model)){
// что-то делаете
}
return $this->renderAjax('_form-edit', [
'model' => $model,
]);
User::findOne();
. Возможно, что ответ от базы приходит пустой.