我碰巧不明白为什么在我的primefaces表的lazydatamodel中没有调用我的load方法。我的xhtml页面就是这样的
<h:form id="myForm">
<p:dataTable value="#{myBean.configDataModel}"
id="configTable" var="config" paginator="true" rows="10"
selectionMode="single"
paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
rowsPerPageTemplate="5,10,20">
.
.
</h:form>
我的Bean代码是这样的,并提出了system.out.println语句,但我注意到它没有被调用。
public class MyBean{
// private List<MyBean> configList;
private LazyDataModel<MyBean> configDataModel;
@SuppressWarnings("serial")
public LazyDataModel<MyBean> getConfigDataModel() {
if (configDataModel == null) {
configDataModel = new LazyDataModel<MyBean>() {
@Override
public List<MyBean> load(int arg0, int arg1, String arg2,
SortOrder arg3, Map<String, String> arg4) {
System.out.println("Here!!!!!");
return null;
}
};
}
return configDataModel;
}
public void setConfigDataModel(LazyDataModel<MyBean> configDataModel) {
this.configDataModel = configDataModel;
}
}
可能是什么原因?
答案 0 :(得分:22)
自PrimeFaces 3.3起,您需要将重复组件的lazy
属性明确设置为true
才能启用对LazyDataModel
的支持。
<p:dataTable ... lazy="true">
答案 1 :(得分:0)