I am trying to show a list of images from my backing bean which has a function
public getImgList(){
return ArrayList<string>imgPathList;
}
Now this List has to be rendered to a equivalent output of images which are displayed side by side. like
[image][image][image]
Which is not possible if I use <h:datatable>, because it will render all of them one per row,
And I cant find any method by which I can render them
using custom component as I will have to pass the list of images to the
custom components.
Can anyone please explain how to pass a list to a custom component in JSF 1.2 Mojarra?