Struts 1.x 1列のラジオボタンと、異なるプロパティを保持する2つの異なるアイテムがあります。これにより、2つの異なるグループの入力ラジオボタンが作成されます。1つはname="item_t1"で、もう1つはname="item_t2"です。これらはグループ化されません。どうすればそれらをグループ化できますか。ラジオボタンが名前でグループ化されていることは知っていますが、この場合、名前のコンテキストは異なります。
<logic:iterate id="item" name="searchResults" property="searchResultsList">
<logic:notEmpty name="item" property="itemId_type1" >
<bean:define id="itemId_t1" name="item" property="itemId_type1"/>
<tr>
<td valign="middle">
<html:radio property="selectedItemId_t1" value="<%=itemId_t1%>"/>
</td>
</tr>
</logic:notEmpty>
<logic:notEmpty name="item" property="itemId_type2" >
<bean:define id="itemId_t2" name="item" property="itemId_type2"/>
<tr>
<td valign="middle">
<html:radio property="selectedItemId_t2" value="<%=itemId_t2%>"/>
</td>
</tr>
</logic:notEmpty>
</logic:iterate>
ありがとう