I have several screens, on two of them are display form and edit form
So the thing is: on display form I have a button which navigates me to edit form, and on edit form there is a button with onselect: UpdateContext({ButtonText: ", " & User().FullName}) and text field default: Parent.Default & ButtonText
When I go to edit screen for the first time, text field only has the value from its parent, then i press the button and to that value adds text from updatecontext. But when i go back to display screen and go to edit screen again, value from updatecontext adds without me pressing a button.
For example
First try
Text field: test
Press button
Text field: test, + value from updatecontext
Second try:
NO pressing button
Text field: test, + value from updatecontext, + another value from updatecontext
Is there a way to fix this?