SelectBox with multiple selection

Hi, I made a custom properties panel, I added Service Code selectInput instead of Type. Now, I want to add multiple select properties to this selectinput prop. Is it possible? How can I do? Can you help me?
image

Hi @aylao ,

can you elaborate on your use-case? What is the binding for “Service Code”? If you are using Zeebe, a Service task can only have one Task definition type, as this corresponds to the worker being used.

In general, it is possible to create a multi-select, but we do not offer a pre-made component for it. You would have to create the Component yourself.

Hi @Martin, this image is an example, I will develop new properties for properties panel and this multiple selected variables will be added to our table. we want multiple selection in select box. Is there an example of how we can design it ourselves?

Hi @aylao , I’m not sure what you already wrote. Did you have a look at the properties-panel-extension example already? The basic structure is the same, except that you wont use TextFieldEntry in

You would need to replace TextFieldEntry with you own implementation for a multi-select. You can do this using htm or other ways to create a Preact Component. You can also have a look at our pre-made components to get an Idea how we implemented components