我想閱讀表單提交中選定的角色信息(從角色列表中爲用戶選擇一個角色)。如何我在EntityHome接口(:我不想使用h:注意這裏selectOneRadio選項)讀取選定的單選按鈕值如何讀取單選按鈕的值
<tr>
<s:div rendered="#{userHome.instance.type ne 'admin'}">
<th width="150" class="rich-table-subheadercell center">#{_user.getName()}</th>
</s:div>
<c:forEach items="#{userHome.instance.roles}" var="_role">
<td width="150" class="center" style="background: rgb(100, 100, 100) none repeat scroll 0% 0%;">
#{_role.name}
<input type="radio" style="display : none" name="#{userHome.instance.id}" value="#{_role.id}"/>
</td>
</c:forEach>
</tr>
這不會無縫工作。請詳細說明**爲什麼**你不想使用'h:selectOneRadio'(或任何其他JSF組件)。你的要求如何不足?如果您詳細闡述不足*和功能要求,我們可能會提供正確的解決方案/解決方法。 – BalusC 2010-02-18 10:54:08