Guillermo
Guillermo

Reputation: 23

jsf fill table using repeat - special case

I get a List of object Computer, and I need to show the status (online or offline) of each one. For example


Comp1:Online | Comp2:Online | Comp3:Online | (Comp4:OffLine)


Comp6:Online | Comp7:Offline | Comp8:Online | (Comp9:Online )


Comp11:Online | Comp12:Online | Comp13:Online | (Comp14:OffLine)


In all the examples that I found, the table add one row for each object, so the screen look like

Comp1:Online


Comp2:Online


Comp3:Online . .


Comp15:Online

Upvotes: 0

Views: 75

Answers (1)

Daniel
Daniel

Reputation: 37061

How about doing the loop inside <h:panelGrid columns="4"> ?

<h:panelGrid columns="4">
    Loop goes here
</h:panelGrid>

Upvotes: 2

Related Questions