JEECG框架的dictSelect下拉
生活随笔
收集整理的這篇文章主要介紹了
JEECG框架的dictSelect下拉
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
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數據字典下拉選擇框的用法
屬性名 ? ? ? ? ? ? ? ? ? ? ?類型 ? ? ? ?描述 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?是否必須 ? ? ? ? ? ? 默認值
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數據字典下拉選擇框的用法
總結
以上是生活随笔為你收集整理的JEECG框架的dictSelect下拉的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: jeecg框架 弹出框问题
- 下一篇: RDKit | RDKit分子结构图的详