password字段類型輸出一個(gè)密碼輸入框。輸入的密碼將會(huì)被掩蓋,不是像text一樣展示出來
表現(xiàn)形式
字段配置參數(shù)
專屬屬性:
- type (必填) 必須為password
- lock (選填) is a boolean value, if active it removes the password from the output and adds a Modify button to the password field. It only transmits data if the fields is in modify mode.
通用屬性:
- name (必填) 能代表該字段的唯一的名稱.
- label (選填) (支持多語言機(jī)制) 字段的標(biāo)題
- description (選填) (支持多語言機(jī)制) 該字段的描述信息。當(dāng)鼠標(biāo)移動(dòng)到標(biāo)簽上面的時(shí)候,會(huì)以tooltip的形式顯示出來.
- default (選填) (不支持多語言機(jī)制) 默認(rèn)值
- class (選填) 表單字段的css類名。如果省略,默認(rèn)為'text_area'.
- required (選填l) 是否必須填寫內(nèi)容,用于在提交表單是進(jìn)行校驗(yàn). ( "true", "1", "readonly"這些都表示true)
- hint 顯示在html占位符元素中的文本,通常是在空白字段內(nèi)顯示的淺色提示
- readonly (選填l) 是否只讀,字段的值不能編輯. ("true", "1", "readonly" 這些都表示true)
- multiple (選填) 是否允許多選(僅對(duì)下拉類型有效) (true or false).
- useglobal (選填) 是否顯示使用全局參數(shù)(僅對(duì)支持全局參數(shù)的類型有效) (true or false).
- validate (選填) 數(shù)據(jù)的校驗(yàn)規(guī)則.
- disabled (選填) 是否禁用字段。如果為true,那么這個(gè)字段的值不能填寫,只能展示 - 并且這個(gè)值不會(huì)在表單中提交. (可設(shè)置的值: "true", "1", "readonly" 這些都表示true)
- showon (選填) 允許隱藏這個(gè)字段基于其他字段的設(shè)置值
使用方法
<field
name="zmaxtest"
type="password"
label="密碼"
description="輸入密碼"
lock="true"
/>
更多建議: