editors.password¶
webix.editors.
password
¶webix.editors.password helper.
Please look into the linked official documentation.
External references¶
Code¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | webix.editors.password = webix.extend({
render:function(){
return webix.html.create("div", {
"class":"webix_dt_editor"
}, "<input type='password' aria-label='"+getLabel(this.config)+"'>");
}
}, webix.editors.text);
webix.editors.$popup = {
text:{
view:"popup", width:250, height:150,
body:{ view:"textarea" }
},
color:{
view:"popup",
body:{ view:"colorboard" }
},
date:{
view:"popup", width:250, height:250, padding:0,
body:{ view:"calendar", icons:true, borderless:true }
},
richselect:{
view:"suggest",
body:{ view:"list", select:true }
}
};
})();
/*
Renders collection of items
Always shows y-scroll
Can be used with huge datasets
@export
show
render
*/
|