欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  资讯频道

RichFaces 3.1.3发布

程序员文章站 2022-03-09 22:28:20
...
JBoss下属的开源项目RichFaces团队发布了3.1.3版本。该版本带来了如下一些新的功能:

一、日期选择器

RichFaces 3.1.3发布

可以用如下的JSF Tag来使用日期选择器:

<rich:calendar value="#{flight.departureDate}"
               locale="#{locale}"
               datePattern="dd/M/yy hh:mm" />


二、从一个componenet去控制另外一个component,便于组件的重用

三、Shuttle list

RichFaces 3.1.3发布
添加Shuttle List的Tag如下用法:

rich:listShuttle sourceValue="#{items.availableItems}"
            targetValue="#{items.selectedItems}" 
            var="item"
            sourceCaptionLabel="Available Items"
            targetCaptionLabel="Currently Active Items">

  <rich:column width="18">
    <h:graphicImage value="#{item.icon}"/>
  </rich:column>
  <rich:column>
    <h:outputText value="#{item.label}"/>
  </rich:column>

</rich:listShuttle>


四、Orderable list
可以排序的列表是很多企业应用非常常见的页面控件
RichFaces 3.1.3发布

用法如下:
<rich:orderingList value="#{myMusic}" var="album">

  <rich:column>
    <f:facet name="header">
      Song Name
    </f:facet> 
    <h:outputText value="#{album.title}"/>
  </rich:column>

  <rich:column>
    <f:facet name="header">
      Artist Name
    </f:facet>
    <h:outputText value="#{album.artist.name}" />
  </rich:column>

</rich:orderingList>


以及其他一些功能增强
相关标签: richfaces Seam