4,170 questions
@green-9424- Issue is Resolved. Could you please check it once?
Microsoft Teams Version 1.6.00.869 (64-bit).
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Input.Choiceset is cleared when we click on Action.ShowCard.
It occurs on teams windows and teams web.
Example 1:
Example 2:
My adaptive card:
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.4",
"body": [
{
"type": "Input.ChoiceSet",
"label": "ChoiceSet0",
"id": "ChoiceSet0",
"choices": [
{ "title": "choice0A", "value": "1a" },
{ "title": "choice0B", "value": "1b" },
{ "title": "choice0C", "value": "1c" }
]
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.ShowCard",
"title": "ShowCard1",
"id": "ShowCard1",
"card": {
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.4",
"body": [
{
"type": "Input.ChoiceSet",
"label": "ChoiceSet1",
"id": "ChoiceSet1",
"choices": [
{ "title": "choice1A", "value": "1a" },
{ "title": "choice1B", "value": "1b" },
{ "title": "choice1C", "value": "1c" }
]
}
]
}
},
{
"type": "Action.ShowCard",
"title": "ShowCard2",
"id": "ShowCard2",
"card": {
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.4",
"body": [
{
"type": "Input.ChoiceSet",
"label": "ChoiceSet2",
"id": "ChoiceSet2",
"choices": [
{ "title": "choice2A", "value": "2a" },
{ "title": "choice2B", "value": "2b" },
{ "title": "choice2C", "value": "2c" }
]
}
]
}
}
]
}
]
}
@green-9424- Issue is Resolved. Could you please check it once?
Microsoft Teams Version 1.6.00.869 (64-bit).
how to bind data from database in Input.Choiceset when we click on Action.ShowCard using dot net core?