Do you guys use the same screen/form for both adding and editing?
Right now, I create a separate screen for both adding/editing records in a collection. I wouldn’t know how to use the same screen for both. Is that even possible?
Thanks!
Do you guys use the same screen/form for both adding and editing?
Right now, I create a separate screen for both adding/editing records in a collection. I wouldn’t know how to use the same screen for both. Is that even possible?
Thanks!
We use separate screens. Usually, the process and what the user is trying to accomplish is different, so separate is better from a UX/UI standpoint.
Like @Erik said, better to separate from a UX perspective. But if you would want both in same screen you could add 2 buttons and input text field:
Button “Update”
Button “Add”
Input text field as control field for visibility condition.
If you click Update, add a Change value action that changes the input text field to “Update”
if you click “Add”, it changes the field to “Add”
Then you add the forms with condition, ONLY visible form “add” if input text field = “Add” and same for Update.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.