layui.tld 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
  3. "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
  4. <taglib>
  5. <tlib-version>1.0</tlib-version>
  6. <jsp-version>1.2</jsp-version>
  7. <short-name>layui</short-name>
  8. <uri>/layui-tags</uri>
  9. <display-name>"自定义标签"</display-name>
  10. <tag>
  11. <name>select</name>
  12. <tag-class>com.mall.util.DictSelectTag</tag-class>
  13. <body-content>JSP</body-content>
  14. <description>下拉选择控件</description>
  15. <attribute>
  16. <name>key</name>
  17. <required>false</required>
  18. <rtexprvalue>true</rtexprvalue>
  19. <description>数据字典类型编码</description>
  20. </attribute>
  21. <attribute>
  22. <name>name</name>
  23. <required>true</required>
  24. <rtexprvalue>true</rtexprvalue>
  25. <description>SELECT表单的Name</description>
  26. </attribute>
  27. <attribute>
  28. <name>id</name>
  29. <required>false</required>
  30. <rtexprvalue>true</rtexprvalue>
  31. <description>SELECT表单的Id</description>
  32. </attribute>
  33. <attribute>
  34. <name>val</name>
  35. <required>false</required>
  36. <rtexprvalue>true</rtexprvalue>
  37. <description>默认选择的Value</description>
  38. </attribute>
  39. <attribute>
  40. <name>cssClass</name>
  41. <required>false</required>
  42. <rtexprvalue>true</rtexprvalue>
  43. <description>DIV样式</description>
  44. </attribute>
  45. <attribute>
  46. <name>type</name>
  47. <rtexprvalue>true</rtexprvalue>
  48. <description>控件格式 select|radio|checkbox</description>
  49. </attribute>
  50. <attribute>
  51. <name>dictTable</name>
  52. <rtexprvalue>true</rtexprvalue>
  53. <description>自定义字典表</description>
  54. </attribute>
  55. <attribute>
  56. <name>dictField</name>
  57. <rtexprvalue>true</rtexprvalue>
  58. <description>自定义字典表的匹配字段-字典的编码值</description>
  59. </attribute>
  60. <attribute>
  61. <name>dictText</name>
  62. <rtexprvalue>true</rtexprvalue>
  63. <description>自定义字典表的显示文本-字典的显示值</description>
  64. </attribute>
  65. <attribute>
  66. <name>dictCondition</name>
  67. <rtexprvalue>true</rtexprvalue>
  68. <description>自定义字典表的显示文本-字典查询条件</description>
  69. </attribute>
  70. <attribute>
  71. <name>disable</name>
  72. <rtexprvalue>true</rtexprvalue>
  73. <description>是否可编辑-默认是可以编辑</description>
  74. </attribute>
  75. <attribute>
  76. <name>layVerify</name>
  77. <rtexprvalue>true</rtexprvalue>
  78. <description>必填校验</description>
  79. </attribute>
  80. <attribute>
  81. <name>layFilter</name>
  82. <rtexprvalue>true</rtexprvalue>
  83. <description>事件过滤器</description>
  84. </attribute>
  85. </tag>
  86. </taglib>