Wednesday, April 3, 2024

is Required & Validation message in an adaptive card

The parameter to make the text field mandatory in adaptive card is "isRequired", pls try modify the required parameter with the below one:

{

"type": "Input.Text",
"id": "defaultInputId",
"placeholder": "enter comment",
"maxLength": 500,
"isRequired": true,
"errorMessage": "Comment is required"
},

No comments:

Post a Comment

How to Deploy Your HTML Website on a Linux Server (Apache + SFTP)

Launching a simple HTML website on your own Linux server is easier than you might think. Whether you're sharing a static landing page or...