Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

so currently I have several pages as follows:

<s:iterator value="things">
  <%-- do a million things in here with each thing --%>
</s:iterator>

And iterators push the current value of what's being iterated over onto the root. However now the iterators are going away, and there is only one item. How do I promote that item to the root of the ValueStack to avoid having to change every instance of "field" to "thing.field"?

Thanks!!

Jon

share|improve this question
So the answer to this is: <s:push value=""> – Jon Miller Mar 15 '12 at 23:48
<s:push/> would be more accurate. Most of the struts2 tags assume you are working with the top most object on the stack. For instance a collection of collections would generally require a value in the first iterator but not the second. – Quaternion Mar 16 '12 at 5:54
That's not the root, that's the top. – Dave Newton Mar 16 '12 at 12:18

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.