buttflattery / yii2-formwizard

A Yii2 plugin used for creating stepped form or form wizard using yii\widgets\ActiveForm and \yii\db\ActiveRecord
https://yii2plugins.omaraslam.com/formwizard
Other
96 stars 13 forks source link

Input Group Addons support #87

Open sircovsw opened 3 years ago

sircovsw commented 3 years ago

How do I add such a field? https://demosbs3.krajee.com/widget-details/active-field#button-dropdown-addon

I've tried like this. Does not work. 'fieldConfig' => [ 'only' => [ 'type', ], 'type' => [ 'options' => [ 'addon' => [ 'append' => [ 'content' => \yii\bootstrap\ButtonDropdown::widget( [ 'label' => 'Action', 'dropdown' => [ 'items' => [ ['label' => 'Another action', 'url' => '#'], ['label' => 'Something else', 'url' => '#'], '<li class="divider"></li>', ['label' => 'Separated link', 'url' => '#'], ], ], 'options' => ['class' => 'btn-default'] ] ), 'asButton' => true ] ] ], ] ]