Struts logic:iterate indexId Question
843838Mar 30 2006 — edited Mar 30 2006i hava 3 iterations like this
<logic:iterate id="categoryRes" name="categoryRs" property="rows" indexId="i" >
<bean:write name="categoryRes" property="DESCR" />
<bean:define id="itemRs" property="SCORINGITEM_RS" name="categoryRes"/>
<logic:iterate id="itemRes" name="itemRs" property="rows" indexId="j" >
<bean:write name="itemRes" property="LABEL" />
<bean:define id="itemValRs" property="SCORINGITEMVALUE_RS" name="itemRes"/>
<logic:iterate id="itemValueRs" name="itemValRs" property="rows" indexId="k" >
<html:radio name="ScoringTestMineForm" property="scoringDescription" value="VALUE" idName="itemValueRs" indexed="true" ></html:radio>
</logic:iterate>
</logic:iterate>
</logic:iterate>
this renders the radio button in html with index of the most inner iterate (index k), but i need the radio to get the index of the 2nd inner iterate with index j. Is this possible?