yii2:drop-down list for multiple values concat in one line

18,968

Solution 1

ArrayHelper::map($array, $from, $to, $group) uses ArrayHelper::getValue() to obtain the values of $from, $to and $group. ArrayHelper::getValue() allows you to pass closures.

The anonymous function signature should be: function($array, $defaultValue).

As such you can set $to as

ArrayHelper::map(
    \app\models\Medicine::find()->asArray()->all(),
    'id',
    function($model) {
        return $model['medicine_name'].'-'.$model['medicine_id'];
    }
)

Solution 2

Ok I found the solution. I will welcome if there is a better solution.

I have created a function in the model Medicine.php

public function getMedicineName(){
        return $this->medicine_name .'-'.$this->medicine_id;
    }

and then in the arrayhelper replaced medicine_name with medicineName and Now I am getting what I was looking for.

Solution 3

The anonymous function could be

function ($element) {
   return $element['medicine_name'] . '-'. $element['medicine_id'];
}

You can check here!

Share:
18,968

Related videos on Youtube

Pawan
Author by

Pawan

Web Developer

Updated on September 16, 2022

Comments

  • Pawan
    Pawan over 1 year

    for my drop-down list I am using this code.

    <?= $form->field($medicinerequest, '[' . $id . ']' . 'medicine_name')
    ->DropDownList(ArrayHelper::map(\app\models\Medicine::find()
    ->asArray()->all(), 'id', 'medicine_name','medicine_id' ),
    [ 'prompt' => 'Please Select' ])?> 
    

    I am getting the drop-down list as in the picture. But I want it to be concatenated by hyphen(-) in one line. How can I do this?

    medicine-request-drop-down

  • Pawan
    Pawan over 9 years
    Though I will stick to my solution as this can be used at many places with one declaration. But you have explained well the proper way of doing it, I will accept your answer.
  • Diego Betto
    Diego Betto about 8 years
    $model should be an array, not an object. So return $model['medicine_name'].'-'.$model['medicine_id'];
  • topher
    topher about 8 years
    @DiegoBetto thank you. For future reference you can edit the answer yourself to improve it.