Good Morning,
In the modern form designer. Is there a way to hide the sensitive information, such as SSN or DL number as it is entered. Sort of the way a password input field works.
Thank You,
Good Morning,
In the modern form designer. Is there a way to hide the sensitive information, such as SSN or DL number as it is entered. Sort of the way a password input field works.
Thank You,
I have the same question - the javascript found in prior answers only work for the Classic form designer. I also would like to know how to do this in the modern form designer.
Hi Kevin,
You might want to check for field masking for modern form designer, if that addresses your problem
https://answers.laserfiche.com/questions/191066/Masking-in-New-Forms-Designer#215061
Thank you @████████ . The field masking seems to be more for input validation. What I am looking to do is, for example, as an employee enters sensitive information like 123-456-7890, the field displays ************, but when it goes into SQL it should be 123-456-7890. I can do this using javascript on a Classic form, but I was wondering if there is a LFForm object equivalent.
I am looking for a form that will utilize this as well in the new forms designer to hide sensitive data.
Are there any updates for this to hide sensitive information? I hate having to use the old designer for forms with this requirement at this point in time. It has been out for years now, this functionality should be built in by now.
Good Afternoon @████████, I was able to use the following css to hide sensitive text in the Modern Designer.
.masked-text input {
-webkit-text-security: disc;
text-security: disc;
}
Let me know if this helps. Thank You,