Parameter multiselect
Created at 16 Aug 2022, 17:13
BE
Parameter multiselect
16 Aug 2022, 17:13
Hello,
is there a way to add a multiselect parameter?
We can have an Enum like
[Parameter("Source")]
public DataSeries Source { get; set; }
But can we have a [Flag] enum to give me the option to select multiple options at once in the parameters list?
firemyst
18 Aug 2022, 04:23
RE:
benjaminwolf123454321 said:
Not as far as I'm aware in the fashion you're speaking. You could always try to "hack" your way around it. For instance, have all your options as several "boolean" parameters where users select "Yes/No" to each one, and then implement the appropriate logic in your bot to run with all their selections.
Otherwise, this would be considered more of a suggestion, so should be posted in the area for their dev team to consider.
@firemyst