1
我使用的Primefaces 3.2與Tomcat 7.0.23和JSF 2.0 我使用的組件。Primefaces和圓形傳送帶
<p:carousel id="aCarousel" value="#{BBCarousel.carouselItems}" var="carouselItem"
autoPlayInterval="3000"
rows="4" vertical="true" circular="true" pageLinks="0" headerText="Informations" >
<div class="thumbnail">
<img src="images/minilogo.png" />
</div>
<div class="info">
<a href="#">#{carouselItem.item_title}</a>
<span class="cat">Category: #{carouselItem.item_cat}</span>
</div>
</p:carousel>
當轉盤到達最後轉盤項目時,轉盤滑動以(向上移動)的第一個元素..相反,我想的是,最後一個項目將被附接到所述第一項,在「循環方式「,沒有休息..所以我得到了連續的滾動效果.. 我希望我已經明確.. 謝謝!
所以我應該修改primefaces源代碼?壞消息... – afterbit