I have a List <Food> , which contains values such as food_id, food_catergory, food_detail etc.
There is a java file call 'Event.java' it contain the List <Food> as a variable.
Now there's a JSF page called event.xhtml. I need to print all the items in the List<Food> in a table form in the event.xhtml page.
the items should be printed in the order of;
Food_ID - food catergory - food detail
Furthermore, Food_Id should be a link. so when you click on that you should be able to navigate to another page.
I found out that i have make use of 'dataTable' to achieve this but non worked. can some one show me how to do it. I have tried most of the stuff on google but nothing worked (i did not understand it rather). Help appreciated.