Hi@RoScha,
Based on the issue that you mentioned, do you want to copy the Label text content to the TextInput and click the edit button to edit it?
Could you please share a bit more about the scenario,
- Do you want to control the DisplayMode of the TextInput based on the edit button?
- How you save the variable, click another button to update?
I assume that you display the variable into the Label, and then copy the content to the TextInput on clicking the edit button, you could edit the copied content. Finally, you could click another button to update.
I have a test on my side, please take a try as below.
I assume that the variable you set in the Label is Var1.
Set the OnSelect property of the edit button as below:
Set(ButtonClick,true)
Set the Default property of the TextInput as below:
If(ButtonClick,Var1)
Set the Visible property of the TextInput as below:
If(ButtonClick,true,false)
After that, if you want to save the TextInput content to the corresponding variable, you could set the OnSelect property of the save button as below:
Set(Var1,TextInput1.Text)
Best Regards,
Qi