I have a function (getArticleByFamille) in event onchange dopDownList like this:
<?= $form->field($modelFamille, 'idFamille')->dropDownList(
ArrayHelper::map(Famille::find()->all(), 'idFamille', 'libelle'),
[
'prompt' => 'Sélectionner la Categorie',
'class' => 'chosen-select mb-15',
'onchange' => 'getArticleByFamille(this.value,"vente/devis","' . Yii::$app->getUrlManager()->getBaseUrl() . '","ArticleByFamille")'
]
)->label(false); ?>
but When I call this function, it not working and when I inspect I have this code:
onchange="getArticleByFamille(this.value,"vente/devis","/performancia/web","ArticleByFamille")"
quote was changed