Linking TextBlock & Input.Text in a adaptive card

Viewed 4

I have an adaptive card like below.

I want to shown what ever the user inputs in the Input.Text field in the TextBlock (instead of name). Is this even possible?

Note: I am building this with Bot Framework Composer.

{
    "type": "AdaptiveCard",
    "body": [
        {
            "type": "Input.Text",
            "placeholder": "Placeholder text",
            "id": "name"
        },
        {
            "type": "TextBlock",
            "text": "Your name is <name>",
            "wrap": true
        }
    ],
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
    "version": "1.3"
}
0 Answers
Related