Re: How to set checkbox label value in a iterator

2007-07-10 Thread TonyD
this message in context: http://www.nabble.com/How-to-set-checkbox-label-value-in-a-iterator-tf4035305.html#a11516246 Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: How to set checkbox label value in a iterator

2007-07-09 Thread TonyD
Looks like what you want is index. -Dale - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/How-to-set-checkbox-label

Re: How to set checkbox label value in a iterator

2007-07-09 Thread Dale Newfield
TonyD wrote: Well I found out what index is (index=count +1) Bzzt. Index is a zero-based iteration count, count is a one-based iteration count, so index+1=count. but a need something that tells me how much iterations are there before reaching the end of interation. That has nothing to

How to set checkbox label value in a iterator

2007-07-06 Thread TonyD
this message in context: http://www.nabble.com/How-to-set-checkbox-label-value-in-a-iterator-tf4035305.html#a11463698 Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: How to set checkbox label value in a iterator

2007-07-06 Thread TonyD
=%{reports} sets all values of the iterator. Where could I find all status properties (first, last, odd, even, count, etc.) Thanks in advance. Tony -- View this message in context: http://www.nabble.com/How-to-set-checkbox-label-value-in-a-iterator-tf4035305.html#a11463841 Sent from

Re: How to set checkbox label value in a iterator

2007-07-06 Thread Dale Newfield
TonyD wrote: label=%{reports[#reportStatus.count -1]} Where could I find all status properties (first, last, odd, even, count, etc.) http://struts.apache.org/2.0.8/struts2-core/apidocs/org/apache/struts2/views/jsp/IteratorStatus.html Looks like what you want is index. -Dale