1

我有一个数据表,并且有允许用户在当前行正下方插入一行的链接。这应该会更新编号。

它一次完美地工作,创建一个新行,填充数字并将下面所有行的编号添加一个。

如果我单击其他任何内容,似乎 ajax 请求完成但没有任何反应。

您将看到我正在使用#{table} 变量来获取 UIData 元素的行索引。我曾尝试在 commandLink 中使用 process="@form" 和 process="@this",但遗憾的是无济于事。同样,我的方法返回 void,因此我将其设置为返回 null 字符串,但发生了相同的结果。

XHTML

<h:form id="feForm">
   <p:dataTable value="#{fichaExpandidaBean.feFlujoNormalList}" binding="#{table}" var="fn">
      <p:column headerText="Paso:">
         <h:outputText value="#{fn.orden}-"/>
      </p:column>
      <p:column headerText="Descripcion:">
         <h:inputText value="#{fn.descripcion}" style="width:98%;"/>
      </p:column>
      <p:column headerText="Acciones">
         <p:commandLink style="margin: 5px;" action="#{fichaExpandidaBean.agregarFilaFlujoNormal(table.rowIndex)}" update="@form">
            <h:graphicImage title="Agregar fila abajo." value="/resources/imagenes/agregarFila.png" alt="AgregarFila"/>
         </p:commandLink>
      </p:column>
   </p:dataTable> 
</h:form>

豆:

@Named(value = "fichaExpandidaBean")
@ConversationScoped
public class FichaExpandidaBean implements Serializable {

@Inject
    private Conversation conversation;
...etc...

public String agregarFilaFlujoNormal(int row){

        FeFlujonormal fn = new FeFlujonormal();
        fn.setOrden(row + 2);
        feFlujoNormalList.add(row + 1, fn);

        for(int i = row + 2; i < feFlujoNormalList.size(); i++){

            FeFlujonormal feTemp = feFlujoNormalList.get(i);
            feTemp.setOrden(feTemp.getOrden()+1);
        }

        return null;
    }

编辑:我认为这不是 Primefaces 问题,我使用以下代码得到相同的结果:

<h:dataTable value="#{fichaExpandidaBean.feFlujoNormalList}" binding="#{table}" var="fn">
     <h:column>
        <f:facet name="header">Paso</f:facet>
        <h:outputText value="#{fn.orden}-"/>
     </h:column>
     <h:column>
        <f:facet name="header">Descripcion</f:facet>
        <h:inputText value="#{fn.descripcion}" style="width:98%;"/>
     </h:column>
     <h:column>
        <f:facet name="header">Acciones</f:facet>
        <h:commandLink style="margin: 5px;" action="#{fichaExpandidaBean.agregarFilaFlujoNormal(table.rowIndex)}">
           <f:ajax render="@form"/>
           <h:graphicImage title="Agregar fila abajo." value="/resources/imagenes/agregarFila.png" alt="AgregarFila"/>
        </h:commandLink>
     </h:column>
 </h:dataTable>
4

0 回答 0