0

我正在使用p:datatableand selection 在我的 bean 中处理选定的记录。这行得通。但是我想在初始化数据表时预设一个选定的行。这可能吗?如何?

现在它不会预设记录,即使已设置 selectedCompany。是因为我在返回jsf之前就做了吗?

这是我的代码

public Map<String, Object> getSelectedCompany() {
    return selectedCompany;
}

public void setSelectedCompany(Map<String, Object> selectedCompany) {
    this.selectedCompany = selectedCompany;
}
public MWSGenericMapList getHandlingCompanies() {

    if (companyItems == null) {
companyItems = retrieveHandlingCompanyItems(partnerIds);
            for (int i = 0; i < companyItems.size(); i++) {
                if (companyItems.get(i).get("businesspartnerid").equals(getnewCustomerPartnerId())) {
                    setSelectedCompany(companyItems.get(i));
                }
            }
}
return companyItems;
}

jsf

<p:dataTable styleClass="ptable100" id="handlingCompanies" var="company" value="#{switchCompany.handlingCompanies}" width="100%" height="200" 
        emptyMessage="#{msg.all_lists_no_records_found}" paginator="true" rows="10" rowsPerPageTemplate="5,10,20,50,100"
        paginatorTemplate="{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}  #{msg.all_lists_numberOfRowsDisplayed_label} {RowsPerPageDropdown}"
        selection="#{switchCompany.selectedCompany}" selectionMode="single" rowKey="#{company.businesspartnerid}">
            <p:ajax event="rowSelect" update="@form" listener="#{switchCompany.handleCompanyChange}"/>
4

1 回答 1

0

没关系,选定的行确实设置好了,我只是不在第一页上(一页上显示的行太多)所以我错过了。但它的工作方式和我一样。

于 2012-10-05T09:55:07.373 回答