That's not valid JSP; you can't nest tags like that.

> Any suggestions, please, can't understand mistake.

That's not what <s:param...> is for; it's for parameterizing other tags.

<tr id="foo<s:property value="#status.index">">bar</tr>

You could use <s:set...> to create the ID if you don't want to create it
on-the-fly.

<tr id="attachedMainDocRow<s:property value="#document.status"/>">
Some content
</tr>

When I inspect source of generated html page, I see:
<tr id="attachedMainDocRow">
Some content
</tr>

My rows were printed several times (that's ok), but #document.status is not
used, seems like  it's "" or null, but it can't be so. My iterator iterates
several times and gets values from list.

Is there any issues with status of iterator?

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-- 
View this message in context: 
http://www.nabble.com/Problem-accessing-iterated-object-%28%3Cs%3Aiterator%29-tp18614028p18685977.html
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to