Answer the question
In order to leave comments, you need to log in
How to organize nested multi-forms in Yii2?
Good afternoon. There was a need to implement nested, but at the same time multi-forms in the main form. I.e:
class MasterForm extends Model
{
....
/**
* @var PortfolioForm[]
*/
public $portfolios = [];
....
}
class PortfolioForm extends Model
{
...
public $categoryId;
...
}
// $model - MasterForm
/** @var PortfolioForm $portfolioForm **/
foreach ($model->portfolios as $portfolioForm) {
echo $form->field($portfolioForm, 'categoryId')->dropDownList([...]);
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question