Change values in drop down.

0
Hi Team, I have a requirement that let's say for example, In a drop down I am having 1,2,3 as values. By default value 1 gets selected in the drop down. Now, in my case, for sure I should change the value from 1 to any of the other drop down values.This condition should be mandatory. How could I do like this? Thanks in advance..
asked
1 answers
1

Add an action button to the data view. This action button will replace your save button. Create a microflow and connect it to the action button. In this microflow, check to see if the value of your drop down has changed:

  • If not, you can present validation feedback to the user, to indicate that this value must change.

  • If so, you can commit the object and show a new page.

answered