1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
- "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
- <taglib>
- <tlib-version>1.0</tlib-version>
- <jsp-version>1.2</jsp-version>
- <short-name>layui</short-name>
- <uri>/layui-tags</uri>
- <display-name>"自定义标签"</display-name>
- <tag>
- <name>select</name>
- <tag-class>com.mall.util.DictSelectTag</tag-class>
- <body-content>JSP</body-content>
- <description>下拉选择控件</description>
- <attribute>
- <name>key</name>
- <required>false</required>
- <rtexprvalue>true</rtexprvalue>
- <description>数据字典类型编码</description>
- </attribute>
- <attribute>
- <name>name</name>
- <required>true</required>
- <rtexprvalue>true</rtexprvalue>
- <description>SELECT表单的Name</description>
- </attribute>
- <attribute>
- <name>id</name>
- <required>false</required>
- <rtexprvalue>true</rtexprvalue>
- <description>SELECT表单的Id</description>
- </attribute>
- <attribute>
- <name>val</name>
- <required>false</required>
- <rtexprvalue>true</rtexprvalue>
- <description>默认选择的Value</description>
- </attribute>
- <attribute>
- <name>cssClass</name>
- <required>false</required>
- <rtexprvalue>true</rtexprvalue>
- <description>DIV样式</description>
- </attribute>
- <attribute>
- <name>type</name>
- <rtexprvalue>true</rtexprvalue>
- <description>控件格式 select|radio|checkbox</description>
- </attribute>
- <attribute>
- <name>dictTable</name>
- <rtexprvalue>true</rtexprvalue>
- <description>自定义字典表</description>
- </attribute>
- <attribute>
- <name>dictField</name>
- <rtexprvalue>true</rtexprvalue>
- <description>自定义字典表的匹配字段-字典的编码值</description>
- </attribute>
- <attribute>
- <name>dictText</name>
- <rtexprvalue>true</rtexprvalue>
- <description>自定义字典表的显示文本-字典的显示值</description>
- </attribute>
- <attribute>
- <name>dictCondition</name>
- <rtexprvalue>true</rtexprvalue>
- <description>自定义字典表的显示文本-字典查询条件</description>
- </attribute>
- <attribute>
- <name>disable</name>
- <rtexprvalue>true</rtexprvalue>
- <description>是否可编辑-默认是可以编辑</description>
- </attribute>
- <attribute>
- <name>layVerify</name>
- <rtexprvalue>true</rtexprvalue>
- <description>必填校验</description>
- </attribute>
- <attribute>
- <name>layFilter</name>
- <rtexprvalue>true</rtexprvalue>
- <description>事件过滤器</description>
- </attribute>
- </tag>
- </taglib>
|