I'm iterating over an array of beans called 'classifications'. How do I access the parentID property within the tag? I tried %{parentID} but that does not work.
<s:iterator value="classifications" status="theStatus">
<s:if test="%{parentID} == -1">
<p>-1: <s:property value="subjectName" /></p>
</s:if>
<s:else>
<p>not -1: <s:property value="subjectName" /></p>
</s:else>
</s:iterator>