-
FEATURED COMPONENTS
First time here? Check out the FAQ!
Is there an option to show password while typing in the password in textfield?
<textbox id="pw" type="password" value="abc"/>
<checkbox label="show password" onCheck="toggleType()"/>
<zscript><![CDATA[
public void toggleType(){
if ("password".equals(pw.getType())){
pw.setType("text");
}else{
pw.setType("password");
}
}
]]></zscript>
Asked: 2022-10-20 00:18:07 +0800
Seen: 5 times
Last updated: Oct 21 '22