How to get the title of an Input.ChoiceSet?
#8192
Unanswered
David Román (DevD4v3)
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I have the following adaptive card:
{ "type": "AdaptiveCard", "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "version": "1.3", "body": [ { "type": "TextBlock", "text": "Dental Services", "wrap": true, "size": "Medium", "weight": "Bolder" }, { "type": "Input.ChoiceSet", "choices": [ { "title": "brackets", "value": "1" } ], "isRequired": true, "separator": true, "id": "dentalServiceId" } ], "actions": [ { "type": "Action.Submit", "title": "Send" } ] }I understand that I can get the value that the user selected using the following code:
But how could I get the title? Is there any way to obtain it?
All reactions