How to set the selected value from a drop down in a non-persistent entity

1
I have a dropdown that uses a persistent table as its data source. I need to save the value selected by the user from that dropdown into a non-persistent table.
asked
2 answers
1

You can use an On Change event for this with a Nanoflow or Microflow action. That should give you enough control over the data to add the selected value.

The parameter for a Dropdown On Change event is the selected item

answered
0

Hi Ricardo Cervantes,

 

I think for this, you want to save it on Submitting I guess.

Is it right?

 

If it is, then On submit of the form with the dropdown you can call a microflow. So that every tym the submit button is triggered then you can submit and store it in Non -persistent entity

answered