Hi,
On my backing bean, I have a list of Player objects. Each Player object has a list of Card objects.
On my jsf page, I want to display a dataTable with one row per Player and one column per Card. Since each player may have a different number of cards, I need to have a way of determining how many columns to create.
My initial idea was to use something like:
but this renders no columns at all (after reading around the subject, I understand why this is the case). Can anyone suggest a suitable alternative or workaround for the problem described above?
Thanks