Using JSF 2.0, I need to display a table wherein each row contains a link which opens a popup. I have two models: A
which has id
and List<B>
properties and B
which has id
and name
properties. In my backing bean, I have a List<A>
property. In my view, I am using <ui:repeat>
to iterate over List<A>
.
The requirement is, depending on the row that the user clicks, the corresponding List<B>
of A
needs to be displayed. However, the <ui:repeat>
does not accept a nested list to be assigned in the var
attribute. Hence, I need to do a lot of workarounds which is not efficient.
How do I efficiently solve this problem?