Hi,
I need to create a multiselect input using a static list of data.
How can I do this?
Thanks,
Patrick
Hi @POR160893,
you could follow the hint of @ITWhisperer and try something like this:
<input type="checkbox" token="status">
<label>Status</label>
<choice value="Enabled">Enabled</choice>
<choice value="Disabled">Disabled</choice>
<default>Enabled</default>
<prefix>(</prefix>
<suffix>)</suffix>
<valuePrefix>Status="</valuePrefix>
<valueSuffix>"</valueSuffix>
<delimiter> OR </delimiter>
</input>
Ciao.
Giuseppe