亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? displaytag-el.tld

?? 一個OA系統
?? TLD
?? 第 1 頁 / 共 2 頁
字號:
<?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.1</tlib-version>
  <jsp-version>1.2</jsp-version>
  <short-name>display-el</short-name>
  <uri>http://displaytag.sf.net/el</uri>
  <display-name>Display *: Tag Library (EL)</display-name>
  <description>
    The display tag library is an open source suite of custom tags that provide high level web presentation patterns
    which will work in a MVC model, and provide a significant amount of functionality while still being simple and
    straight-forward to use. The primary tag in the library is the Table tag.
  </description>
  <tag>
    <name>table</name>
    <tag-class>org.displaytag.tags.el.ELTableTag</tag-class>
    <body-content>JSP</body-content>
    <display-name>table</display-name>
    <description>
      Displays a list in an html table, formatting each item in the list according to the Column tags nested inside of
      this tag. Use the list attribute to indicate the Collection of data, in some scope, that the tag should operate
      on. Supports the export of the list data to alternative formats such as CSV, Excel, and XML. The contents of the
      list can be sorted, and the list can be broken into individual pages for display. If you use this tag in Struts,
      or in some other framework where the page is included via a jsp:include, you should use the requestURI attribute
      to indicate where tag generated links should point.
    </description>
    <attribute>
      <name>name</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        reference to the object used as source for the table. Can be an expression like requestScope.object.property. In
        the EL version of the taglibrary this must be an EL expression which points to the source object.
      </description>
    </attribute>
    <attribute>
      <name>length</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>number of records to be shown</description>
    </attribute>
    <attribute>
      <name>offset</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>index of the first record to be shown</description>
    </attribute>
    <attribute>
      <name>pagesize</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>number of records in a page</description>
    </attribute>
    <attribute>
      <name>decorator</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Fully qualified class name for a TableDecorator. Use a TableDecorator to provide custom operations against the
        whole list, such as computing totals. Must extend org.displaytag.decorator.TableDecorator.
      </description>
    </attribute>
    <attribute>
      <name>requestURI</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        When the present, links for sorting, exports, and paging are formed by adding any tag generated parameters to
        the value of requestURI attribute.
      </description>
    </attribute>
    <attribute>
      <name>requestURIcontext</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Enable/disable prepending of application context to generated links. Default is true, you can set it to false in
        order to generate cross-context links.
      </description>
    </attribute>
    <attribute>
      <name>excludedParams</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <type>java.lang.String</type>
      <description>
        Whitespace separated list containg the name of parameters which should NOT be forwarded during paging or
        sorting. You can use excludedParams="*" to match (exclude) any parameter.
      </description>
    </attribute>
    <attribute>
      <name>varTotals</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <type>java.lang.String</type>
      <description>
        Store a java.util.Map of the column totals in a pageContext variable by this name. The keys of the map are
        "column" and the column number (first column is "column1", etc); values are the corresponding total for the
        column; columns that are not marked as to total="true" will be omitted from the map. The variable will ONLY be
        available within the footer tag and after the end of the table, it is not available with the body of the table
        or columns.
      </description>
    </attribute>
    <attribute>
      <name>style</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>html pass through attribute</description>
    </attribute>
    <attribute>
      <name>class</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>html pass through attribute</description>
    </attribute>
    <attribute>
      <name>cellspacing</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>html pass through attribute</description>
    </attribute>
    <attribute>
      <name>cellpadding</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>html pass through attribute. Better using "padding" css attribute in style or class</description>
    </attribute>
    <attribute>
      <name>frame</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>html pass through attribute.</description>
    </attribute>
    <attribute>
      <name>rules</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>html pass through attribute.</description>
    </attribute>
    <attribute>
      <name>summary</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>html pass through attribute</description>
    </attribute>
    <attribute>
      <name>htmlId</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>html "id" pass through attribute</description>
    </attribute>
    <attribute>
      <name>export</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>enable/disable export. Valid values are true or false</description>
    </attribute>
    <attribute>
      <name>id</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>See "uid".</description>
    </attribute>
    <attribute>
      <name>uid</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Unique id used to identify this table. The object representing the current row is also added to the pageContext
        under this name, so that you can refer to it in column bodies using ${uid}. You can also use uid_rowNum to refer
        to the current row number. Two tables in the same page can't have the same id (paging and sorting will affect
        both). If no "htmlId" is specified the same value will be used for the html id of the generated table.
      </description>
    </attribute>
    <attribute>
      <name>sort</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Use 'page' if you want to sort only visible records, or 'list' if you want to sort the full list, or 'external'
        if the data is sorted outside displaytag.
      </description>
    </attribute>
    <attribute>
      <name>defaultsort</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <!--<type>int</type>-->
      <description>The index of the column that will be used by default for sorting (starting from 1)</description>
    </attribute>
    <attribute>
      <name>defaultorder</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        The default order for the sorted column. Valid values are "ascending" (default) or "descending"
      </description>
    </attribute>
    <attribute>
      <name>partialList</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <type>boolean</type>
      <description>enable/disable partialLists. Valid values are true or false</description>
    </attribute>
    <attribute>
      <name>size</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Used only when partialList=true. Reference to the Integer object containing the size of the total dataset. Can
        be an expression like requestScope.object.property. In the EL version of the taglibrary this must be an EL
        expression which points to the source object.
      </description>
    </attribute>
    <example>
      <![CDATA[
<display:table name="someList" export="true" id="row" requestURI="MyAction.do">
  <display:column sortable="true" title="ID"> <c:out value="${row.id}"/> </display:column>
  <display:column property="email" autolink="true"/>
  <display:column property="description" title="Comments"/>
</display:table>
]]>
    </example>
  </tag>
  <tag>
    <name>column</name>
    <tag-class>org.displaytag.tags.el.ELColumnTag</tag-class>
    <body-content>JSP</body-content>
    <display-name>column</display-name>
    <description>
      Displays a property of a row object inside a table. MUST be nested inside of a Table tag. The value displayed will
      be the results of a decorator (if any); else the property named by the 'property' attribute; or if the 'property'
      attribute is null, then the results of evaluating the JSP body of the tag.
    </description>
    <attribute>
      <name>property</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        name of the property in the bean specified in the parent table tag (via the "name" attribute) mapped to this
        column
      </description>
    </attribute>
    <attribute>
      <name>sortProperty</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        name of the property in the bean specified in the parent table tag (via the "name" attribute) which will be used
        to sort values in the column. This can be used when the column body is filled or a decorator is used and column
        should sort on undeorated values.
      </description>
    </attribute>
    <attribute>
      <name>title</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>title of the column (text for the th cell)</description>
    </attribute>
    <attribute>
      <name>comparator</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        The classname of comparator to use when sorting this column, or the comparator itself. Defaults to the
        DefaultComparator.
      </description>
    </attribute>
    <attribute>
      <name>titleKey</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Resource key used to lookup the title value. Only works if "title" is not defined. Works together with a
        configured I18nResourceProvider, specified via the displaytag.properties file. By default, if JSTL is available,
        the JSTL provider is used, which makes this attribute work the same as fmt:message's key property.
      </description>
    </attribute>
    <attribute>
      <name>nulls</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        By default, null values don't appear in the list. By setting 'nulls' to 'true', then null values will appear as
        "null" in the list (mostly useful for debugging). Defaults to 'false'.
      </description>
    </attribute>
    <attribute>
      <name>total</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <type>boolean</type>
      <description>
        If true, will total the contents of this column. This value is available via the Map named in varTotals for the
        table. Column values need to Numbers.
      </description>
    </attribute>
    <attribute>
      <name>sortable</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>Set to 'true' to make the column sortable. Defaults to 'false'.</description>
    </attribute>
    <attribute>
      <name>defaultorder</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <type>java.lang.String</type>
      <description>
        The default sort order for this column. Valid values are "ascending" (default) or "descending"
      </description>
    </attribute>
    <attribute>
      <name>autolink</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Automatically hyperlink URLs and email addresses that appear in the column. Defaults to 'false'.
      </description>
    </attribute>
    <attribute>
      <name>format</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <type>java.lang.String</type>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91蜜桃传媒精品久久久一区二区| 国产精品拍天天在线| 91精品一区二区三区在线观看| 97久久久精品综合88久久| av毛片久久久久**hd| 成人a区在线观看| 成人高清av在线| 99精品国产热久久91蜜凸| 91色婷婷久久久久合中文| 一本久道中文字幕精品亚洲嫩| 91啦中文在线观看| 欧美日本一道本在线视频| 欧美丰满一区二区免费视频| 欧美精品v日韩精品v韩国精品v| 欧美电影一区二区三区| 日韩欧美三级在线| 国产亚洲视频系列| 国产精品久久久久久久久久久免费看 | 91福利在线播放| 欧美中文字幕一二三区视频| 欧美电影一区二区| 久久亚区不卡日本| 国产精品嫩草99a| 樱花影视一区二区| 日韩综合一区二区| 国内偷窥港台综合视频在线播放| 国产精品白丝jk白祙喷水网站| 成人福利视频在线| 欧美系列日韩一区| 精品国内二区三区| 亚洲欧美综合网| 天天综合色天天综合色h| 久久精品国产网站| 成人午夜av在线| 欧美亚洲高清一区| 日韩欧美高清一区| 国产精品久久综合| 婷婷一区二区三区| 国产盗摄一区二区三区| 色婷婷久久久综合中文字幕| 这里只有精品电影| 亚洲国产精品av| 亚洲国产视频在线| 国产一区二区三区美女| 在线精品国精品国产尤物884a | 亚洲午夜久久久久久久久久久| 三级久久三级久久久| 国产精品亚洲а∨天堂免在线| 92精品国产成人观看免费| 欧美一卡二卡三卡| 中文字幕在线不卡一区| 日本在线不卡视频| 不卡的av在线播放| 欧美一区二区福利视频| 亚洲欧美在线aaa| 蜜臀久久久99精品久久久久久| 成人手机电影网| 日韩欧美精品在线视频| 亚洲免费观看高清完整版在线观看熊| 久久成人免费日本黄色| 在线一区二区三区四区五区| 国产午夜精品美女毛片视频| 亚洲成人免费影院| 成人国产精品免费观看视频| 日韩视频在线你懂得| 亚洲精品中文字幕在线观看| 九九精品一区二区| 欧美日韩免费观看一区三区| 中文字幕不卡在线观看| 激情六月婷婷综合| 欧美精品18+| 一区二区三区视频在线看| 国产精品综合在线视频| 91麻豆精品国产自产在线| 亚洲色图都市小说| 国产成人午夜高潮毛片| 欧美sm极限捆绑bd| 国产夫妻精品视频| 欧美精品在线观看播放| 亚洲精品视频免费看| 不卡一区中文字幕| 26uuu国产电影一区二区| 日产国产高清一区二区三区| 欧美在线短视频| 日韩一区欧美小说| 成人激情开心网| 久久午夜老司机| 美洲天堂一区二卡三卡四卡视频| 欧洲av在线精品| 亚洲人成在线播放网站岛国 | 久久综合精品国产一区二区三区| 日本va欧美va精品| 欧美高清www午色夜在线视频| 亚洲国产中文字幕| 欧美系列日韩一区| 亚洲18女电影在线观看| 日本福利一区二区| 亚洲黄色小说网站| 在线精品亚洲一区二区不卡| 一区二区三区四区五区视频在线观看 | 91丝袜高跟美女视频| 国产精品美女久久福利网站| 国产成人丝袜美腿| 国产精品久久久久三级| av中文字幕不卡| 亚洲天天做日日做天天谢日日欢| www.av亚洲| 最新成人av在线| 97se亚洲国产综合在线| 亚洲激情在线激情| 欧美日韩激情在线| 性做久久久久久| 欧美一区二区三区性视频| 免费成人深夜小野草| 26uuu精品一区二区在线观看| 国产一区二区精品久久99| 日本一区二区三区四区在线视频 | 久久中文字幕电影| 国v精品久久久网| 中文字幕中文字幕在线一区 | 9191成人精品久久| 激情成人午夜视频| 中文字幕免费不卡在线| 色哟哟亚洲精品| 亚洲成av人片| 日韩三级视频在线看| 成人午夜av在线| 亚洲一区二区三区中文字幕在线| 欧美日本在线一区| 国产露脸91国语对白| 中文字幕成人av| 欧美无人高清视频在线观看| 麻豆精品久久精品色综合| 久久影院午夜论| 99久久伊人精品| 图片区日韩欧美亚洲| 久久久精品国产免费观看同学| av成人免费在线观看| 日韩二区三区在线观看| 国产婷婷一区二区| 欧美无人高清视频在线观看| 精品在线视频一区| 亚洲精品一二三| 精品少妇一区二区三区在线播放| av在线一区二区三区| 天堂一区二区在线免费观看| 国产日产欧产精品推荐色| 欧美亚洲一区二区在线| 国产精品亚洲一区二区三区在线| 高清成人免费视频| 亚洲制服丝袜在线| 欧美精品一区二区三区蜜桃视频| 97久久精品人人做人人爽| 免费成人在线网站| 亚洲乱码精品一二三四区日韩在线| 日韩一本二本av| 91日韩在线专区| 老鸭窝一区二区久久精品| 亚洲人成影院在线观看| 精品国产a毛片| 欧美性猛交xxxx乱大交退制版| 国产精品伊人色| 日韩国产在线一| 亚洲丝袜制服诱惑| 精品久久久久久久久久久院品网| 91美女片黄在线| 国产精品18久久久久久久久久久久| 亚洲午夜激情av| 国产亚洲欧美一级| 91精品国产色综合久久ai换脸 | 成人性生交大片免费看中文网站| 亚洲成人动漫在线观看| 亚洲欧美综合另类在线卡通| 26uuu亚洲综合色欧美| 欧美日韩国产小视频在线观看| fc2成人免费人成在线观看播放| 理论片日本一区| 日韩av电影一区| 亚洲一区二区四区蜜桃| 亚洲日本护士毛茸茸| 国产精品免费观看视频| 精品电影一区二区| 日韩一级大片在线| 欧美精品tushy高清| 欧美性猛交xxxx黑人交| 色婷婷综合久久久| 91视视频在线观看入口直接观看www | 欧美一区二区在线看| 色av成人天堂桃色av| zzijzzij亚洲日本少妇熟睡| 国产乱码一区二区三区| 国内久久婷婷综合| 久久 天天综合| 麻豆久久久久久久| 日日摸夜夜添夜夜添国产精品| 一区二区三区四区不卡视频| 亚洲欧美一区二区不卡| 亚洲日本va在线观看| 中文字幕日韩精品一区| 最新成人av在线|