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