Laravel-Pagebuilder icon indicating copy to clipboard operation
Laravel-Pagebuilder copied to clipboard

Select2 dropdown in block setting

Open nirraval opened this issue 3 years ago • 3 comments

How to use select2 dropdown in block setting?

image

nirraval avatar Jun 30 '21 07:06 nirraval

It should be:

'options' => [
    ['value' => 'select_layout', 'label' => 'Select Layout'],
    ...
],

or:

'options' => [
    'Select Layout',
    'Left Side Gallery With Animation',
    ...
],

HansSchouten avatar Jun 30 '21 12:06 HansSchouten

Is there any way to select multiple values from the dropdown instead of one? Right now we can select only one option but we would like to select multiple items from the dropdown.

nirraval avatar Jul 01 '21 04:07 nirraval

At the moment this is unfortunately not possible.

HansSchouten avatar Jul 01 '21 15:07 HansSchouten