I have a collection of data that appears as the following:
Group1, Name1, Age1
Group1, Name2, Age2
Group2, Name3, Age3
Group2, Name4, Age4
Group3, Name5, Age5
What I would like to be able to do is output this data in a table in the following format:
Group1
Name1 Age1
Name2 Age2
Group2
Name3 Age3
Name4 Age4
Group3
Name5 Age5
So the group label should have a colspan of 2 to span the length of the Name and Age columns.
The datatable component doesn't give me any control over the display of individual elements, so I cannot use that.
How can I go about creating the above data display in JSF?
[Message sent by forum member 'aantix' (aantix)]
http://forums.java.net/jive/thread.jspa?messageID=206108