提问者:小点点

Primefaces的命令链接仅适用于dataTable的第一页


我在p: dataTable中有一个带有p:命令链接的列,它有一个分页器。当用户单击命令链接时,会打开一个对话框,显示该行的数据。

数据表HTML代码:

<p:dataTable id="dtSample" value="#{sessionBean.sampleList}"
    binding="#{requestBean.dtSampleList}"
    paginator="true" paginatorPosition="bottom"
    paginatorTemplate="{CurrentPageReport}  {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
    rowsPerPageTemplate="#{10,25,50}"
    currentPageReportTemplate="({startRecord} of {totalRecords})"
    var="item" emptyMessage="No entries." rows="10" rowKey="#{item.id}">
    <p:column headerText="Id">
        <p:commandLink id="lnkSample"
            action="#{requestBean.onLinkClick(item)}"
            oncomplete="PF('dlgSample').show();"
            update="@(.dialogClass)">
            <h:outputText value="#{item.id}" />
                        </p:commandLink>
    </p:column>
    <p:column headerText="Code">
        <h:outputText value="#{item.code}" />
    </p:column>
    <p:column headerText="Description">
        <h:outputText value="#{item.descr}" />
    </p:column>
</p:dataTable>

请求bean:

public class RequestBean {

    private SessionBean sessionBean;

    private DataTable dtSampleList;

    public void init() {
        // load samle list
        loadSampleList();
    }

    public String onLinkClick(Sample sample) {
        getSessionBean().setSelectedSample(sample);
        return "success";
    }

    private void loadSampleList() {
        List<Sample> list = new ArrayList<Sample>();

        for (int i = 0; i < 100; i++) {
            Sample tmp = new Sample();
            tmp.setId(new BigDecimal(i + 1));
            tmp.setCode("code" + (i + 1));
            tmp.setDescr("desc" + (i + 1));
            list.add(tmp);
        }
        getSessionBean().setSampleList(list);

    }

// getters and setters

}

会话bean:

public class SessionBean implements Serializable {
    private static final long serialVersionUID = 1L;

    private List<Sample> sampleList;
    private Sample selectedSample;

    // getters and setters

}

对话框html代码:

<p:dialog id="dlgSample" closeOnEscape="true" widgetVar="dlgSample"
                    styleClass="dialogClass" modal="true">
    <p:panelGrid columns="1">
        <h:outputText value="Id: #{sessionBean.selectedSample.id}" />
        <h:outputText value="Code: #{sessionBean.selectedSample.code}" />
        <h:outputText value="Description: #{sessionBean.selectedSample.descr}" />
    </p:panelGrid>
</p:dialog>

当我单击数据表第一页上的链接时,将执行链接操作,并正确刷新显示行数据的对话框。但是当我移动到数据表的任何后续页面时,单击链接不会刷新对话框中的数据(未调用链接操作,因此对话框中的数据是错误的- selectedSample变量具有旧值)。当然,当我回到数据表的第一页时,命令链接再次工作(调用action方法并刷新数据)。

我做错了什么?为什么不在任何数据表页面上调用操作方法?

我正在使用Primefaces 5.2。


共3个答案

匿名用户

问题似乎出现在PF数据表组件中。缺少第一个属性,添加这些属性后,所有页面上的commandLinks都按预期工作。

匿名用户

我做错了什么?为什么不在任何数据表页面上调用操作方法?

导致该行为的一个常见错误是您的状态不一致:为了处理表单提交,JSF 将重新创建与先前请求中完全相同的视图,然后应用更改(执行操作)

如果这个新视图现在不同于提交之前的视图,那么每个动作都被中止并且不被调用。(涉及要素不同。即,如果您的commandLink在提交前< code > render = " true " ,则需要在< code > APPLY _ REQUEST _ VALUES -阶段< code > render = " true " 。

因此,根据您的描述,我假设您的表正在返回到第1页,这将从视图中删除第2页上的任何链接,并中止其视图操作,因为元素不再呈现。

出于同样的原因,第1页上的链接是有效的,因为即使您的表失去了对当前页面的跟踪,它也会呈现第1页,因此您拥有与之前相同的视图,因此提交工作正常。

您可以通过增加每页的元素数量来轻松验证这一点,并看到从第 2 页移动到第 1 页的每个链接现在都在工作。

但在没有看到整颗豆子的情况下,我只能这样假设。为了便于测试,将您的bean设置为< code>@SessionScoped,看看这是否能解决问题。

有关更多想法,请参阅这篇文章:命令按钮/命令链接/ajax动作/侦听器方法未调用或输入值未更新

匿名用户

在p: dataTable行中放置p:Command dLink等组件时,应始终指定

process="@this"

所以,在你的情况下,我会尝试:

 <p:commandLink id="lnkSample"
        action="#{bean.onLinkClick(item)}"
        oncomplete="PF('dlgSample').show();"
        update="@(.dialogClass)">
        <h:outputText value="#{item.id}" />
 </p:commandLink>

这样做,您可以确保只处理单击链接的操作,而不会执行其他提交操作。