Skip to content

Instantly share code, notes, and snippets.

@beatcode
Created June 11, 2015 08:40
Show Gist options
  • Save beatcode/de62ea611049877f0fe4 to your computer and use it in GitHub Desktop.
Save beatcode/de62ea611049877f0fe4 to your computer and use it in GitHub Desktop.
Yii2 onchange Ajax Event
<?= $form->field($model, 'IDProdukt')->dropDownList(ArrayHelper::map(TblProdukte::find()->all(), 'ID', 'Produkt'),
['prompt' => '-Produkt wählen-',
'onchange' => '
$.get( "index.php?r=buchung/getprice&id="+$(this).val(), function( data ) {
$( "#tblbuchung-preis" ).val( data );
});
']); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment