So, maybe i just don't know some secret that you know. ;-)
Let me be more clear. I have a list of objects of type Category.
class Category {
private Integer categoryId;
private String title;
... getters/setters
}
If i have three different Category objects in my list and i want to
iterate over the list contents and display the titles as commandLinks
horizontally in a breadcrumb format. How would i do that? What would
the code look like in my JSF to accomplish this?
Please post a sample of how you would write this. I'm sorry if i'm
being a complete idiot here.
Brandon
On 4/16/05, Rob Decker <[EMAIL PROTECTED]> wrote:
> Isn't that pretty much how they'd lay out by default?
>
>
> ----- Original Message -----
> From: "Brandon Goodin" <[EMAIL PROTECTED]>
> To: "MyFaces Discussion" <[email protected]>
> Sent: Saturday, April 16, 2005 6:04 PM
> Subject: Displaying a list horizontally
>
> I have a list of objects. I want to dislpay their contents in a
> breadcrumb format. How would i display the list horizontally?
>
> Ex.
> List of Category objects [CategoryA,CategoryB,CategoryC]
>
> I want to display them as commandLinks in the following manner:
>
> CategoryA > CategoryB > CategoryC
>
> Thanks,
> Brandon
>