I need to add a class and a function to a dropdownlist
in Yii2 activeform
, here's the code:
<?php $form = ActiveForm::begin(); ?>
<?= $form->field($model, 'tipocontratto')->dropDownList(['RES' => 'Residenziale', 'BUS' => 'Business'], ['prompt'=>'Seleziona...'],['maxlenght'=> true]); ?>
I need to specify a class for the field and also a JavaScript function.
In normal textfield
I use this way:
<?= $form->field($model, 'cogn_ragsoc')->textInput(['maxlength' => true,'class'=>'form-control formtesto','onfocus'=>'test()']) ?>
and it works perfectly, but in dropdownlist
it doesn't.
How can I fix this?
I need to add a class and a function to a dropdownlist
in Yii2 activeform
, here's the code:
<?php $form = ActiveForm::begin(); ?>
<?= $form->field($model, 'tipocontratto')->dropDownList(['RES' => 'Residenziale', 'BUS' => 'Business'], ['prompt'=>'Seleziona...'],['maxlenght'=> true]); ?>
I need to specify a class for the field and also a JavaScript function.
In normal textfield
I use this way:
<?= $form->field($model, 'cogn_ragsoc')->textInput(['maxlength' => true,'class'=>'form-control formtesto','onfocus'=>'test()']) ?>
and it works perfectly, but in dropdownlist
it doesn't.
How can I fix this?
Share Improve this question edited Mar 3, 2024 at 19:45 Benjamin Buch 6,1658 gold badges35 silver badges63 bronze badges asked Jul 2, 2015 at 11:13 piebuopiebuo 1511 gold badge2 silver badges7 bronze badges2 Answers
Reset to default 8This works perfectly.
<?= $form->field($model, 'tipocontratto')->dropDownList(['RES' => 'Residenziale', 'BUS' => 'Business'], ['prompt'=>'Seleziona...','class'=>'yourclass','onchange'=>'function()']); ?>
try adding options with class eg: :
<?= $form->field($model, 'tipocontratto')->dropDownList(['RES' => 'Residenziale', 'BUS' => 'Business'],
['prompt'=>'Seleziona...'],['maxlenght'=> true],
[options=> ['class' => 'yuorClass']]); ?>