javascript - Yii2 add class or function to dropdownlist form field - Stack Overflow

I need to add a class and a function to a dropdownlist in Yii2 activeform, here's the code:<?p

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 badges
Add a ment  | 

2 Answers 2

Reset to default 8

This 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']]); ?>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743744245a4499712.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信