Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
444 views
in Technique[技术] by (71.8m points)

php - Dropdown List multiselection in yii2

I need multiselection in dropdown list. This my dropdown list

<?= $form->field($model, 'receiver_id')->dropDownList(
    ArrayHelper::map(User::find()->all(),'id','username'),
    ['prompt' => 'Select receiver...']
) ?>

But it's only for one receiver. I want to choose some receivers and display them in textfield of this list separated by commas. Could you help with this problem? Thank you in advance for any help you can provide.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

just use a listbox

<?= $form->field($model, 'receiver_id')->listbox(
    ArrayHelper::map(User::find()->all(),'id','username')
) ?>

or use a select2 widget by kartik


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...