Save custom attribute if not in drop down list

0
Hi all I want a user to be able to add an address to a factory. I want to let the user pick from the already available addresses that are already saved but if the address is not in there I want to let the user set a custom one and save that one. Is there an easy way to achieve this? I’m not sure how I could do this exactly   Thanks.
asked
1 answers
3

There are several ways to achieve this. If you want to use a dropdown, you could add a button next to it. If the address can’t be found in the dropdown, the user can click the button. This button would call a microflow that creates the address object, associates it with your other object and opens the Address_NewEdit page in which the user can enter the details. Clicking save will now store it to the database and it will already be associated with your main object (because the microflow already did).

answered