Problem with dropDownList()

Hi i am junior.
I can pass parameter to dropDownList()
twig file.
i can write parameter catid.
it doesn’t work
“catid” i sand from controlle

  {{ form.field(model, 'team').dropDownList({lists}, {'options' : { catid : {'selected' : true}}}) | raw }}

i can print “catid” but dropDownList does not see it.
Help pleas :slight_smile:

             <?= $form->field($model, 'id')->
        dropDownList(ArrayHelper::map(yourmodel::find()->all()
                , 'id', 'name'),['disabled' => $model->isNewRecord])  ?>