开发者

ui:repeatn tag inside ui:repeat..not working

开发者 https://www.devze.com 2023-02-18 14:30 出处:网络
I am using ice:faces in my project. I have issues with UI:Repeat. It never works .... ui:repeatn tag inside ui:repeat..

I am using ice:faces in my project. I have issues with UI:Repeat. It never works ....

ui:repeatn tag inside ui:repeat..

do I need to do anything different..

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http开发者_如何学运维://java.sun.com/jsf/html"
xmlns:c="http://java.sun.com/jstl/core"
xmlns:ice="http://www.icesoft.com/icefaces/component">

<ui:repeat value="#{item.rowField3}" var="section">
<ice:panelGrid columns="#{section.columns}">
<ui:repeat items="#{section.fieldInfo}" var="fieldInfo">
<ui:include src="rowField.jspx" />
</ui:repeat>
</ice:panelGrid>
</ui:repeat>
</html>


Attribute "items" in your nested ui:repeat should be "value".

0

精彩评论

暂无评论...
验证码 换一张
取 消