Can we add text field dynamically

The easiest way to do this is with Action.ShowCard: { “type”: “AdaptiveCard”, “body”: [ { “type”: “Input.Text”, “placeholder”: “Placeholder 1”, “id”: “text1” } ], “actions”: [ { “type”: “Action.ShowCard”, “title”: “Add field”, “card”: { “type”: “AdaptiveCard”, “body”: [ { “type”: “Input.Text”, “placeholder”: “Placeholder 2”, “id”: “text2” } ], “actions”: [ { “type”: “Action.ShowCard”, “title”: “Add … Read more

[BotFramework]: How to capture/extract the values submitted through Adaptive card rendered in C# Web Chat bot in a waterfall dialog?

Using Adaptive Cards with Waterfall Dialogs Natively, Adaptive Cards don’t work like prompts. With a prompt, the prompt will display and wait for user input before continuing. But with Adaptive Cards (even if it contains an input box and a submit button), there is no code in an Adaptive Card that will cause a Waterfall … Read more