30.07.2021, 07:33
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:
Custom CSS:
Code:
.password .value {
color: transparent;
position: relative;
}
.password .value:after {
color: #333;
position: absolute;
left: 0;
right: 0;
top: 3px;
content: "*****";
}