| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE taglib
- PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
- "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
- <taglib>
- <tlibversion>1.0</tlibversion>
- <jspversion>1.1</jspversion>
- <shortname>j2ee</shortname>
- <uri>http://fzywtx.com/jsp/yw/tms</uri>
- <info>
- 作者:tangj
- 版本号:2012092201
- 简介:用于任务状态输出为表单和javascript支持
- </info>
- <tag>
- <name>taskState</name>
- <tagclass>com.yw.tms.common.tld.TmsTaskStateTag</tagclass>
- <!--
- type 包括:jsp、script、form,默认为jsp
- 如果是jsp,标签将返回一个颜色值;
- 如果是script,标签将返回一个javascript函数,用于支持javascript使用
- 如果是form,标签将创建select表单
- show 包括:color、text、select、checkbox、json
- id 用于表单生成时的id属性
- name 用于表单生成时的name属性
- -->
- <attribute>
- <name>value</name>
- <rtexprvalue>true</rtexprvalue>
- </attribute>
-
- <attribute>
- <name>type</name>
- </attribute>
-
- <attribute>
- <name>show</name>
- </attribute>
-
- <attribute>
- <name>id</name>
- <rtexprvalue>true</rtexprvalue>
- </attribute>
-
- <attribute>
- <name>name</name>
- <rtexprvalue>true</rtexprvalue>
- </attribute>
-
-
-
-
-
- </tag>
- </taglib>
|