Is there an existing issue for this?
Is your feature request related to a problem? Please describe the problem.
Please consider adding support for multiple selection of items (choices)
Describe the solution you'd like
I'd like the ability to select multiple values from a list of possible values (choices)
new InteractionInput
{
Name = "Set",
Label = "Set",
Description = "Select one or more",
InputType = InputType.ChoiceMultiSelect,
Required = true,
EnableDescriptionMarkdown = true,
Options = new []
{
new KeyValuePair<string,string>("val1","1"),
new KeyValuePair<string,string>("val2","2"),
new KeyValuePair<string,string>("val3","3"),
new KeyValuePair<string,string>("val4","4"),
new KeyValuePair<string,string>("val5","5"),
}
},
display of large numbers of options as a list of items with checkbox
[======================]
| [x] item 1 |^|
| [x] item 2 | |
| [x] item 3 | |
| [x] item 4 | |
| [x] item 5 | |
| [x] item 6 |V|
[======================]
Additional context
No response
Is there an existing issue for this?
Is your feature request related to a problem? Please describe the problem.
Please consider adding support for multiple selection of items (choices)
Describe the solution you'd like
I'd like the ability to select multiple values from a list of possible values (choices)
new InteractionInput
{
Name = "Set",
Label = "Set",
Description = "Select one or more",
InputType = InputType.ChoiceMultiSelect,
Required = true,
EnableDescriptionMarkdown = true,
Options = new []
{
new KeyValuePair<string,string>("val1","1"),
new KeyValuePair<string,string>("val2","2"),
new KeyValuePair<string,string>("val3","3"),
new KeyValuePair<string,string>("val4","4"),
new KeyValuePair<string,string>("val5","5"),
}
},
display of large numbers of options as a list of items with checkbox
[======================]
| [x] item 1 |^|
| [x] item 2 | |
| [x] item 3 | |
| [x] item 4 | |
| [x] item 5 | |
| [x] item 6 |V|
[======================]
Additional context
No response