如何将Primefaces dataTable从bean跳到最后一页?

时间:2015-10-28 14:52:52

标签: jquery jsf jsf-2 primefaces datatable

我的.xhtml中有一个看起来像这样的数据表:

<p:dataTable var="category" value="#{beanView.categories}" paginator="true" rows="5" 
 paginatorTemplate="{RowsPerPageDropdown} {FirstPageLink} {PreviousPageLink} {CurrentPageReport} {NextPageLink} {LastPageLink}"
 rowsPerPageTemplate="5,10" id="categoryDT" styleClass="categoryClass"    
 editable="true" lazy="false" rowKey="#{category.id}">
 <!-- columns -->
<f:facet name="footer">
    <p:commandButton id="btnNewCat" 
      oncomplete="jQuery('.categoryClass').find('span.ui-icon-pencil').last().click();" 
    actionListener="#{beanView.onNewCategory}" 
    update="categoryDT" icon="ui-icon-plus" title="New Category" value="New Category" ></p:commandButton>
</f:facet></p:dataTable>

我的bean beanView

public void onNewCategory(final ActionEvent actionEvent) {

    try {
        int rowCount = dataTable.getRowCount();
        int rowsPerPage = dataTable.getRows();
        int lastPage = rowCount / rowsPerPage;
        int rowFirst = (lastPage * rowsPerPage);

        if (rowCount >= rowsPerPage) {
            dataTable.setFirst(rowFirst);
            dataTable.setPageLinks(lastPage + 1);
            dataTable.setRowIndex(rowCount - 1);
        } else {
            ....
        }

        ....
     }
 }

但这实际上不起作用!最后一页不会显示!

可以从bean中点击我的数据表的最后一页按钮吗?还是有另一种解决方法!

感谢您的帮助

2 个答案:

答案 0 :(得分:6)

您可以通过commandButton的oncomplete实现此目的:

<p:commandButton oncomplete="PF('dataTableWV').paginator.setPage(PF('dataTableWV').paginator.cfg.pageCount - 1);"/>

或者来自托管bean:

RequestContext.getCurrentInstance().execute("PF('dataTableWV').paginator.setPage(PF('dataTableWV').paginator.cfg.pageCount - 1);");

注意:dataTableWV是dataTable的widgetVar。

答案 1 :(得分:0)

我只是添加Hatem的答案。

如果只需要在成功后向数据表添加/创建行并且没有发生验证错误的情况下进行检查,则可以使用:

action="#{myBean.createSelection}"
oncomplete="if ( !args.validationFailed &amp;&amp; args.created ) { PF('myDataTable').paginator.setPage(PF('myDataTable').paginator.cfg.pageCount - 1); }" />

oncomplete方法具有参数xhrstatusargs,控制器可以使用它们返回实际发生的事情。

在上述情况下,我们将一些实体添加到数据表中,并且只希望在验证没有失败并且创建了新实体的情况下分页到最后一个实体,而不是在更新或删除时。

在您的控制器中,您可以/应该这样做:

    public void createSelection()
    {
        T selectedEntity = getSelectedEntity();
        
        T persistedEntity = null;
        
        try
        {
            persistedEntity = getEntityService().create( selectedEntity );
        }
        catch ( CreateException e )
        {
            ...

            return;
        }
        
        ...            
        
        PrimeFaces.current().ajax().addCallbackParam( "created", Boolean.TRUE );            
    }