Display Password as encrypted or with asterisk

Ruchi19
Mega Contributor

we have a field named password which needs to be filled in by support team when they close tasks related to 'reset password catalog service.'
we would like this field either encrypted or display the password with asterisk so it is non readable format on the Task form.
any suggestions ?

8 REPLIES 8

ShaneBrazeal
Tera Contributor

If you create it as a string field, and then personalize the dictionary you have the option to set the type to "password2".

This will display it as dots and you can decrypt it in a script like the following:



var Encrypter = new Packages.com.glide.util.Encrypter();
Encrypter.decrypt(current.FIELD_NAME);


Realy nice trick Shane....
Thx for sharing


gustavo1
Kilo Contributor

I've tried using the script such as Client Script and Business Rule but I can't get it works, can you advice please?
Thanks in advance.


Does is possible with this script to show the password characters on a form?