Primefaces:FacesContext中的分页元素



我需要帮助。如果有人能帮忙,我将不胜感激。

我有一个带有分页的数据表,我想从分页器模板(RowsPerPageDropdown 和 CurrentPageReport(在数据表(在托管 Bean 中(获得分页数据,我如何获得它?

表格的形式如下:

<h:form id="form"> 
<p:dataTable id="myDataTable" var="member" 
value="#bean01MyWorkspaces.dqaSqlsExecutiveBeanList}" rows="1" paginator="true"
currentPageReportTemplate="Showing {startRecord}-{endRecord} out of {totalRecords}"
paginatorTemplate="{RowsPerPageDropdown} {FirstPageLink} {PreviousPageLink} {CurrentPageReport} {NextPageLink} {LastPageLink}"
rowsPerPageTemplate="2,3,4" > ...

第一个按钮用数据填充表格(并且工作正常(:

<p:commandButton value="User Datasources"
action="#{bean01MyWorkspaces.initDqaSqlsExecutiveBeanList()}"
style="width:100%;height:100%; margin-bottom: 5px"
update="myDataTable"/>

使用第二个按钮,我正在尝试获取分页数据(从RowsPerPageDropdown和CurrentPageReport中选择(:

<p:commandButton value="User Datasources 2"
action="#{bean01MyWorkspaces.changeMethod}"
style="width:100%;height:100%; margin-bottom: 5px"
/>
</h:form> 

而豆法是:

public void changeMethod() {
    final DataTable d = (DataTable) FacesContext.getCurrentInstance().getViewRoot().findComponent("form:myDataTable");
    int first = 1;
    if(d == null){
        System.out.println("SYSTEM is NULL V"  );
    }else{
        System.out.println("getRowCount is NOT NULL " +d.getRowCount() );
        System.out.println("getCurrentPageReportTemplate is NOT NULL " +d.getCurrentPageReportTemplate());
    }
}

如何从 bean 方法访问 RowsPerPageDropdown 列表和 CurrentPageReport 中的实际/当前值?

提前感谢!

在这种情况下 代替数据表 - 基本使用 数据表 - 懒惰。

Primeface SHOWCASE DataTable - Lazy

相关内容

  • 没有找到相关文章

最新更新