I don't think it's possible but is there a way to toggle, with a button, a field's input style from Password to Standard and back again for the user to quickly check that the password they typed or pasted in is correct?
Announcement
Collapse
No announcement yet.
Toggle Input style?
Collapse
X
-
Hi Geoffww,
Just use input properties table as in included example
Code:tProperties = {}; tProperties.InputStyle = 1; -- 1=standard , 0 = mask -- Set the properties of an input object Input.SetProperties("Input1", tProperties);
Cheers
-
-
You can show the password, but toggling back to the original fat dots does not quite work. If you can live with having smaller dots after showing the password in plain text once, check the attached sample project.
UlrichAttached Files
-
👍 1
Comment
-
Comment