1
私は「タイトル」属性に値を挿入する必要がありますが、私はそれを行う方法を思ったんだけど、それはのようなものでなければなりません:私は分離するために、コンマで1つの文字列を送信することができます1つのui:repeatで2つの配列を反復処理する方法は?
<ui:repeat //..>
<h:graphicImage library="images" name="#{image}" title="#{title}" />
</ui:repeat>
:
<!-- calling the component -->
<cs:small_slider images="products/eletricity.jpg,products/water.jpg" >
<!-- the component with dynamic rendering -->
<cc:interface>
<cc:attribute name="images" type="java.lang.String" required="true" />
</cc:interface>
<cc:implementation>
<div id="slider-container">
<div id="slider-small">
<ui:repeat value="#{fn:split(cc.attrs.images, ',')}" var="image">
<h:graphicImage library="images" name="#{image}" />
</ui:repeat>
</div>
</div>
</cc:implementation>
ご存知ですか?
UIができません:ViewScope豆を破る繰り返し? – Dejell
@BalusC、ありがとう!それは魅力のように動作します=) –