2011-03-18 2 views
0

내 프로젝트에서 얼음 : 얼굴을 사용하고 있습니다. UI에 문제가 있습니다. 반복하십시오. 그것은 작동하지 ....ui : repeatin 태그가 ui : 반복되지 않습니다.

UI : UI 내부 repeatn 태그 : 당신의 중첩 된 UI에서 ..

내가 다른 무엇을 어떻게해야합니까 ..

<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> 

답변

0

속성 "항목을"반복 : repeat는 "value"여야합니다.

관련 문제