最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin0浏览0评论

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']]); ?>
发布评论

评论列表(0)

  1. 暂无评论