Adaptive Card Input.Date

Viewed 544

How to Set Todays Date as Minimum value in Input.Date Action of Adaptive Card. When a user select date ,all Backdates & Previous dates need to be blocked and he can select only Dates after Today.

I used:-

                        "type": "Input.Date",
                        "label": "Date",
                        "id": "ipDate",
                        "isRequired": true,
                        "errorMessage": "Please enter Date",
                        "separator": true,
                        "min": "LocalTimestamp (Date(YYYY-MM-DD))"

Output But ,It is not Working.

Can anyone Guide what Expression should i use in Min Value???.

I want like this--> enter image description here

1 Answers
Related