我正在渲染一张桌子,里面有一个单选按钮。 即,在选择radioButton时,需要重新渲染整个表格。 但哪个不起作用。
这是我的代码:
<h:form id="summaryForm" prependId="false">
<table>
<tbody>
<ui:repeat var="switchRow" value="#{designBean.switchReport.rowList}" varStatus="rowStatus">
<tr class="#{rowStatus.even?'even':'odd'}">
<td>
<h:selectOneRadio id="switchTypeSelectionId"
name="switchTypeSelection"
styleClass="choices"
onclick="selectRadioButton(this);"
value="#{designBean.designTool.switchProduct}">
<f:selectItem itemValue="#{switchRow.rowId}"/>
<f:ajax event="click" execute="@this" render="@form" listener="#{designBean.showIGBTDetails}"/>
</h:selectOneRadio>
</td>
<ui:repeat var="switchColValue" value="#{switchRow.rowValues}">
<td>
<h:outputText value="#{switchColValue}" />
</td>
</ui:repeat>
</tr>
</ui:repeat>
</tbody>
</table>
</h:form>
答案 0 :(得分:0)
我不知道在这种情况下您是否需要点击事件。尝试使用onchange。我记得过去曾提到过的一些事情。但是,如果您在已选择的电台项目上多次单击,它将不会触发。
另外,您是否尝试使用表单的id而不是@form?像render =“summaryForm”。
答案 1 :(得分:0)
经过一番研究,我发现了一种简单的方法来实现这一目标, 这是我的答案, 而不是使用h:selectOneRadio,将其更改为HTML并将其包装在一个,现在点击panelGrid组件调用ajax函数/ listener。
<h:form id="summaryForm" prependId="false">
<table>
<tbody>
<ui:repeat var="switchRow" value="#{designBean.switchReport.rowList}" varStatus="rowStatus">
<tr class="#{rowStatus.even?'even':'odd'}">
<td>
<h:panelGrid id="switchSelectionId" styleClass="choices">
<input type="radio" name="switchTypeSelection" value="#{switchRow.rowId}" />
<f:ajax event="click" execute="@this" render="@form" listener="#{designBean.showIGBTDetails}"/>
</h:panelGrid>
</td>
<ui:repeat var="switchColValue" value="#{switchRow.rowValues}">
<td>
<h:outputText value="#{switchColValue}" />
</td>
</ui:repeat>
</tr>
</ui:repeat>
</tbody>
</table>
</h:form>