2
這可能嗎?如果答案是否定的,還有其他想法?如何使用JSF製作圖像幻燈片?
圖片列表是動態的,它取決於您正在查看的用戶。 如何使用用戶上傳的圖像製作幻燈片?
現在它的工作方式如下: 顯示一張圖片,您需要關閉它才能打開下一張。
<rich:dataGrid id="albumGrid" value="#{someBean.pictures}" var="item" columns="4" elements="4" width="450px" rendered="#{not empty someBean.pictures}" style="margin-left:20px;">
<a4j:commandLink id="fullLinkProfile">
<a4j:actionparam name="pic" value="#{item.path}" assignTo="#{picsBean.path}" />
<h:graphicImage value="/home/pictures/user/#{item.path}" rendered="#{item.path != null}"/>
</a4j:commandLink>
<f:facet name="footer">
<rich:datascroller for="albumGrid" boundaryControls="hide" stepControls="show" fastControls="hide" >
</rich:datascroller>
</f:facet>
</rich:dataGrid>
你能說出任何名字嗎? – pringlesinn 2011-02-23 16:14:51
@pringlesinn -chk更新 – niksvp 2011-02-23 16:19:21