ui:repeat ..内部的ui:repeatn标签不起作用

| 我在项目中使用ice:faces。 我对UI:Repeat有问题。 它永远都行不通.... ui:repeat中的ui:repeatn标签。 我需要做其他事情吗?
<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>
    
已邀请:
嵌套ui:repeat中的属性“项目”应为“值”。     

要回复问题请先登录注册