30.07.2021, 07:49
(30.07.2021, 07:33)admin Wrote: Masking the value is rather complicated. It can be done easier via CSS but the number of "*" will be fixed. Set Additional class to password and use Custom JavaScript from here: https://forum.logicmachine.net/showthrea...8#pid14688
Custom CSS:
Code:.password .value {
color: transparent;
position: relative;
}
.password .value:after {
color: #333;
position: absolute;
left: 0;
right: 0;
top: 3px;
content: "*****";
}
Ok thanks!