Hi, I have a login screen interface where users login. I want to clear PasswordLabel and UserNameLaber when they click the logout button. Could you help me for this?
Thanks in advance
Hi ProtoSup,
If i understand you correctly, what you can do is:
1. Set the 'reset'-property of the inputfields to a variable (for example varReset)
2. in OnSelect for logging out set this var to true and back to false (
Set(varReset,true);
Set(varReset,false)
)
Kind regards, if this solved your issue please mark solved or let me know what is going wrong.
hi @ProtoSup set those labels to variable and once they click set those variables to blank!
Initially: Set(varSomething, "Login")
After Onselect: Set(varSomething, Blank())
Hi @ProtoSup,
Do you want to clear the Text Input when clicking button?
You can set the Default property of Text Input as:
""
and set the On Select property of button as:
Reset(TextInput5);Reset(TextInput4)
Note that: TextInput4 and TextInput5 is my Password and UserName.
Best Regards,
Kyrie
WarrenBelz
146,645
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,997
Most Valuable Professional