4

给定以下 XHTML 代码,其中包含一列<p:inputText>和 a<p:dataTable>只有两列。

<p:remoteCommand name="updateTable" update="dataTable"/>

<p:panel id="panel">
    <p:inputText id="txtValue" value="#{testManagedBean.txtValue}"
                 required="true"/>
    <p:message for="txtValue" showSummary="false"/>
    <p:commandButton actionListener="#{testManagedBean.submitAction}"
                     oncomplete="if(!args.validationFailed) {updateTable();}" 
                     update="panel" value="Submit"/>
</p:panel>

<p:panel id="dataTablePanel" header="Data">
    <p:dataTable id="dataTable" var="row" value="#{testManagedBean}"
                 lazy="true"
                 pageLinks="10"
                 editable="true"
                 rowsPerPageTemplate="5,10,15"
                 rows="10"
                 rowKey="#{row.catId}"
                 editMode="row">

        <p:ajax event="rowEdit" update=":form:panel dataTable"
                listener="#{testManagedBean.onRowEdit}"/>

        <p:column id="id" headerText="Id">
            <h:outputText value="#{row.catId}"/>
        </p:column>

        <p:column id="catName" headerText="Category">
            <p:cellEditor>
                <f:facet name="output">
                    <h:outputText value="#{row.catName}"/>
                </f:facet>
                <f:facet name="input">
                    <p:inputText value="#{row.catName}" label="Category">
                        <f:validateLength minimum="2" maximum="45"/>
                    </p:inputText>
                </f:facet>
            </p:cellEditor>
        </p:column>

        <p:column headerText="Edit" width="100">
            <p:rowEditor/>
        </p:column>
    </p:dataTable>
</p:panel>

<p:commandButton>按下给定时,将调用关联的侦听submitAction()器,最后仅在验证成功时才<p:dataTable>更新。<p:remoteCommand>

完成此操作后,如果给定的行<p:dataTable>被更新(反过来,<p:panel id="panel">通过<p:ajax>inside更新<p:dataTable>。有时是必要的),给定<p:inputText>的 in<p:panel id="panel">导致验证其边界变为红色,表示违反不应发生的相关验证

如果<p:remoteCommand>被删除并且给定<p:commandButton>的更改如下,

<p:commandButton actionListener="#{testManagedBean.submitAction}"
                 update="panel dataTable" value="Submit"/>

去除oncomplete="if(!args.validationFailed) {updateTable();}"

并且update属性从那时更改update="panel"为,当更新一行时,不会导致验证。update="panel dataTable"<p:inputText><p:dataTable>

当使用 which 更新<p:inputText>行时,如何防止执行验证,进而更新持有问题的行?<p:dataTable><p:ajax><p:panel><p:inputText>

<p:remoteCommand>在这种情况下,不能省略。<p:dataTable>只有在没有违反验证时才需要更新。否则,即使存在验证错误,也会不必要地执行昂贵的业务服务。


关联的 JSF 托管 bean(尽管完全没有必要)。

@ManagedBean
@ViewScoped
public final class TestManagedBean extends LazyDataModel<Category> implements Serializable
{
    @EJB
    private final CategoryBeanLocal categoryService = null;
    private String txtValue;  //Getter and setter.
    private static final long serialVersionUID = 1L;

    @Override
    public List<Category> load(int first, int pageSize, List<SortMeta> multiSortMeta, Map<String, Object> filters) {
        setRowCount(categoryService.rowCount().intValue());
        return categoryService.getList(first, pageSize, multiSortMeta, filters);
    }

    public void submitAction() {
        System.out.println("txtValue : " + txtValue);
        txtValue = null;
    }

    public void onRowEdit(RowEditEvent event) {
        System.out.println("onRowEdit() called.");
    }
}
4

1 回答 1

5

完成此操作后,如果给定的行<p:dataTable>被更新(反过来,<p:panel id="panel">通过<p:ajax>inside更新<p:dataTable>。有时是必要的),给定<p:inputText>的 in<p:panel id="panel">导致验证其边界变为红色,表示违反不应发生的相关验证

这不是正在发生的事情。如果这是真的,您会在网络监视器中看到 3 个 HTTP 请求。但是只有 2 个(一个来自面板的提交,一个来自<p:remoteCommand>)。

原因是它<p:remoteCommand>本身。它的process属性默认@all(“整体视图”)。您还可以通过检查javax.faces.partial.execute网络监视器中的请求参数来确认这一点。它说@all。换句话说,整个表单也被提交/处理,包括那些空输入。

您需要将其显式设置为@this

<p:remoteCommand name="updateTable" process="@this" update="dataTable"/>
于 2014-05-03T12:04:38.333 回答