TextInput Set Editable

I’m trying to create an account page where the account fields become editable when a button is clicked.
However, it seems that the ‘editable’ property can only be set on the design side.
Is there a way to programmatically set this property?

I don’t believe there is a way to do this but you could set the text input visible to false and then once the button is clicked set it to true. This would essentially hide the text input until the button is clicked

1 Like

Bummer. Thanks

It is really a pity, since this could help when an app has user permissions.

If this user can see and edit the info then TextInput1.Visible = True & TextInput.Enabled = True
If this user can not see and nor the info then TextInput1.Visible = False
If this user can see but can’t edit the info then TextInput1.Visible = True & TextInput.Enabled = False

Could we expect a change and see this property added in the blocks section?