Need choice only future Date in date picker of Expiry Date Attribute?

0
i have a application where expiry date is attribute when user selecting  the date need to future  no means need to throw a error (need using microflow or nanoflow).
asked
1 answers
1

Hi Poola,

 

In your validation Microflow (or Nanoflow for that matter), you could add the following decision:

 

$YourDateTimeAttributeHere > [%CurrentDateTime%]

 

This checks whether the user's selected value is greater than the current date. If this condition isn't met, you could implement a validation message action telling the user that the selected date must be in the future.

 

Hope this helps.

 

answered