This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes JSF and the fly likes is there something similar to c:forEach in JSF Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » JSF
Reply Bookmark "is there something similar to c:forEach in JSF" Watch "is there something similar to c:forEach in JSF" New topic
Author

is there something similar to c:forEach in JSF

Khopkar Amarish
Greenhorn

Joined: Dec 29, 2005
Posts: 11
Hi Guys,

is there a way to retrieve indexed properties in JSF inside of a loop like structure like c:forEach or logic:iterate so that you can use indexed properties for the h: tags in JSF like #{myBean.property[counter]}

I can't seem to find a way to do this easily

Amarish
Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15230

Not really. What are you trying to do exactly and maybe we can find a better alternative for you.
Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15230

Khopker Amarish said:


Hi,

I've looked for this in a lot of places and can't seem to find a solution. I'm trying to do a form with a table that has a dynamic number of rows each with an input radio and input text field which are indexed properties.

Unfortunately I'm on JSP 2.0 and don't currently have the option to switch to 2.1 and upgrade my EL version.

My question is how do you do a for loop or a c:forEach so that these input fields with have a value attribute that is either:

1. indexed like value="#{myBean.values[index].type}"

OR as part of a Collection like

2. c:forEach var='nxt' items='#{myBean.values}'
and then value='#{nxt.type}'

or something to that effect?

Any insight would be greatly appreciated.

Amarish


Why do you need to do this? A dataTable already loops through your collection for you.
Khopkar Amarish
Greenhorn

Joined: Dec 29, 2005
Posts: 11
I'm actually trying to render a table with a dynamic collection of rows having input fields (each row in the collection has a text and radio button). Ideally, I would map the text fields and radio buttons in this collection to item objects in Collections in my bean.

Is a data table the best way to do this?

Amarish
Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15230

Is a data table the best way to do this?

Yes! A dataTable is for rendering a table based on come collection. Or collection of collections.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: is there something similar to c:forEach in JSF
 
Similar Threads
Iteration in structs
accesss to indexed variable in bean
setting array values in formbean from jsp
Indexed properties, multiple rows submission using struts
how do you render indexed property input components?