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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…