Hi Community,
So I have table on Copilot studio , would like to using on choiceset on adaptive card but somehow it not showing up
Is there any help please.
{
type: "AdaptiveCard",
'$schema': "http://adaptivecards.io/schemas/adaptive-card.json",
version: "1.0",
body: [
{
type: "Input.ChoiceSet",
id: "input1",
style: "compact",
isMultiSelect: false,
label: "Select a Department",
choices: ForAll(Topic.departments_tb,[{
title: name,
value: name
}])
}
],
actions: [
{
type: "Action.Submit",
title: "Confirm Department"
}
]
}