PrimeFaces' rowEditor除了第一次尝试之外没有其他工作

时间:2016-11-18 01:12:30

标签: primefaces roweditor

我有p:dataTable看起来像这样。

<p:remoteCommand name="rowEdit" action="#{servicesController.onRowEditCommand}" update="servicesTable" />
<p:remoteCommand name="rowEditCancel" action="#{servicesController.onRowEditCancelCommand}" update="servicesTable" />

<p:dataTable id="servicesTable"
             value="#{servicesController.services}" var="service" rowKey="#{service.id}"
             editable="true" editMode="row">

  <p:ajax event="rowEdit" listener="#{servicesController.onRowEdit}"
          oncomplete="rowEditCommand()"/>
  <p:ajax event="rowEditCancel" listener="#{servicesController.onRowEditCancel}"
          oncomplete="rowEditCancelCommand()"/>
  <p:ajax event="rowSelect" update=":mainMenu"
          listener="#{servicesController.sessionScopeServiceChanged}"/>

    <!-- other columns here -->

    <p:column style="width: 44px;">
      <p:rowEditor/>
    </p:column>

    <!-- other columns here -->

  </p:dataTable>

p:rowEditor第一次正常工作。它从第二次开始就没有用。它进入编辑模式但复选框和x没有响应。

1 个答案:

答案 0 :(得分:0)

两个命令名称错误。

<p:remoteCommand name="rowEdit" ... />
<p:remoteCommand name="rowEditCancel" ... />

  <p:ajax ... oncomplete="rowEditCommand()"/>
  <p:ajax ... oncomplete="rowEditCancelCommand()"/>

我改为。

<p:remoteCommand name="rowEditCommand" ... />
<p:remoteCommand name="rowEditCancelCommand" ... />

  <p:ajax ... oncomplete="rowEditCommand()"/>
  <p:ajax ... oncomplete="rowEditCancelCommand()"/>