Answer the question
In order to leave comments, you need to log in
Yii2 many-to-many how to save correctly?
I’ll start not like everyone else) I don’t have three tables, but two.
locations
$form->field($model, 'parents_ids')->dropDownList($model->getListLocality(), ['class' => 'chzn-select', 'multiple' => true])
class Locality extends ActiveRecord
{
const PUBLISH = 1;
const UNPUBLISHED = 0;
public $parents_ids = array();
...
public function beforeSave($insert)
{
if (parent::beforeSave($insert)) {
print_r($this->parents_ids);
die();
return true;
} else {
return false;
}
}
}
Answer the question
In order to leave comments, you need to log in
Good afternoon. What did you write in the rules for this property?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question