repeat « IceFaces « JSF Q&A





1. Weird behaviour Tree inside ui:repeat or ice:panelseries    stackoverflow.com

So i basicly have a tree inside a collapsible and is iterating with a ui:repeat or ice:panelSeries because they pretty much have the same structure

<ui:repeat value="#{navigationBean.navigationPanels}" var="panel"  >
   ...

2. ui:repeatn tag inside ui:repeat..not working    stackoverflow.com

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

3. ice:repeat inputText with List, if String is immutable?    stackoverflow.com

I want list to be List<String>. First I display one inputText, each time a user enters data in the inputText I add another empty inputText. If the list already has some ...

4. ui:repeat doesn't work with f:selectItem    stackoverflow.com

i am using icefaces select on menu to select a user from list of users and i want to repeat the selectItem for each user here's what i tried:

<ice:selectOneMenu id="users">
    ...

5. ui:repeat - duplicate components.    icefaces.org

6. panelCollapsible inside ui:repeat    icefaces.org

7. panelCollapsible inside ui:repeat    icefaces.org



11. draggable and ui:repeat    icefaces.org

12. foreach/ui:repeat refresh problem    icefaces.org

13. ui:repeat won't work    icefaces.org

14. ui:repeat issues    icefaces.org

16. ice:dataTable and ui:repeat    icefaces.org





17. c:forEach vs ui:repeat (a.k.a ice:panelSeries)    icefaces.org

Hello, I'm trying to avoid using c:forEach because I heard that JSTL doesn't mix well into the render phase of the JSF... I'm not sure of that claim at all. On the contrary I had to resort to using c:forEach instead of ui:repeat in many cases because the ui:repeate simply does NOT iterate on the collection.. this happened in many cases ...

19. ice:datatable problem repeated header    icefaces.org

20.  and tag together    icefaces.org

I am using and tag to play sequence of .wav files. But its not playing in good way to here my captcha text. What i want i can i sleep the thread for 1 second for each ui:repeat Following is my code. How to play ...

25. ice:repeat    icefaces.org

26. ui:repeat    icefaces.org

28. Repeat items within a panelGrid    icefaces.org

29. ui:repeat    icefaces.org

30. Paginator for ui:repeat    icefaces.org

32. Incompatibilities between repeat and panelGrid ?    icefaces.org

Hello all, I would like to display a list of collapsilblePanel with a formating over two columns for the panel's detail. My managed bean contains the description of each panel (header and details) as a plain list. The first repeat tag (one for each header) seems to work fine. But the repeat tag that displays the panel detail freezes only two ...