我在h:dataTable中有一个h:commandbutton,在我的应用程序中有一个下拉列表,它有一个更新h:dataTable的ajax命令。但是当我在dataTable中进行更新时,我的命令按钮会停止工作。
这是我的h:dataTable:
<h:dataTable value="#{viewBean.requestList}" var="o" id="request_table" class="table table-striped table-bordered table-hover" cellspacing="0" width="100%">
(...)
<h:column>
<f:facet name="header">Edit</f:facet>
<h:form>
<div style="text-align: center">
<h:panelGroup id="teste_button">
<h:commandButton title="Edit" class="btn btn-info btn-sm" action="#{navigationBean.toEdit()}" rendered="#{true}">
<span class="glyphicon glyphicon-pencil"></span>
<f:param name="selectedRequestID" value="#{o.id}" />
<f:param name="itemMenuAnterior" value="#{viewBean.itemActual}" />
</h:commandButton>
</h:panelGroup>
(...)
</div>
</h:form>
</h:column>
</h:dataTable>
这是我的下拉列表:
<h:form>
<h:selectOneMenu value="#{viewBean.itemActual}" id="select_filter" class="form-control">
<f:selectItems value="#{viewBean.items}" var="itematual" itemLabel="#{itematual}"/>
<f:ajax listener="#{viewBean.itemChange(event)}" render="request_table" onevent="functionName"/>
</h:selectOneMenu>
</h:form>