我有一个带有字段的表单,来自DB的字段cumin 我试图设置一个默认值 - 即自动选择 附加代码
'queue_id' => [
'type' => Form::INPUT_DROPDOWN_LIST,
'items' =>$queues ,
'options' => [
'prompt' => '--Select '.Yii::t ( 'app', 'Queue' ).'--'
]
],
'user_assigned_id' => [
'type' => Form::INPUT_DROPDOWN_LIST,
'items' =>$users,
'options' => [
'prompt' => '--'.Yii::t ( 'app', 'Select User' ).'--'
]
],
'ticket_category_id_1' => [