Page 1 of 1

Password characters

Posted: Fri Oct 21, 2016 10:48 am
by soa
How do I set an input box to display ***** for password input instead of the characters typed.

Re: Password characters

Posted: Fri Oct 21, 2016 11:12 am
by soa
Its odd that items columns in my Lists have a PasswordChar setting but a plain input field does not.

Re: Password characters

Posted: Fri Oct 21, 2016 11:38 am
by Stewart Marshall
You have a couple of choices. The first is to add the ND (Non-display) input attribute to your "password" field definition. Alternatively, you can use an Edit (Prim_edit). This has a PasswordChar property.

The reason you see a password character in a list column is that a string column is actually an edit (Prim_edit) rather than a field.

Re: Password characters

Posted: Fri Oct 21, 2016 1:36 pm
by soa
Thanks for that