1. 程式人生 > >jeecg3.7中DictSelect數據字典下拉選擇框的用法

jeecg3.7中DictSelect數據字典下拉選擇框的用法

clas name vcl val title tco sql 文本 sel

1、參數

屬性名 類型 描述 是否必須 默認值

title string 標題 否 null

field string 控件字段名字 是 null

typeGroupCode string 字典分組編碼 是 null

type string 控件類型select|radio|checkbox 否 select

id string 唯一標識 否 null defaultVal string 默認值 否 null

divClass string DIV 框默認樣式 否 form

labelClass string LABEL 默認樣式 否 Validfor m_label

dictTable string 自定義字典表 否 null

dictField string 自定義字典表的匹配字段-字典 的編碼值 否 null

dictText string 自定義字典表的顯示文本-字典 的顯示值 否 null

dictCondition string 自定義字典表的顯示文本-字典 查詢條件 否 null

extendJson string 擴展參數(json 格式) 否 null

hasLabel boolean 是否顯示 Label 否 false

readonly string 是否可編輯。當值”readonly” 時不可編輯。 否 null

datatype string validform 校驗規則,一般必 須輸入:* 否 null

2、用法

<t:dictSelect field="orgid" type="list" dictTable="t_s_org" dictField="id" dictText="orgName" defaultVal="${id}"

dictCondition=" where status=‘1‘" hasLabel="false" title="機構"
extendJson="{datatype:‘*‘}"></t:dictSelect>

註意:dataType直接寫無效,需要通過extendJson屬性配置方可生效,dictCondition中需要寫入該下拉列表的sql查詢語句即可生效

jeecg3.7中DictSelect數據字典下拉選擇框的用法