Display Password as encrypted or with asterisk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2011 01:42 PM
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 ?
- Labels:
-
Orchestration (ITOM)
-
Service Mapping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2011 04:02 PM
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);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-27-2011 07:53 AM
Realy nice trick Shane....
Thx for sharing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-13-2012 08:26 AM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-13-2012 08:50 AM
Does is possible with this script to show the password characters on a form?