7

我碰巧不明白为什么我的加载方法没有在我的 primefaces 表的惰性数据模型中调用。我的 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;
    }
}

可能是什么原因?

4

2 回答 2

25

从 PrimeFaces 3.3 开始,您需要将lazy重复组件的属性显式设置true为以启用对LazyDataModel.

<p:dataTable ... lazy="true">

也可以看看:

于 2012-11-06T02:28:42.083 回答
0
  1. 如果您是 IE,请务必检查它使用的是哪种所谓的“兼容模式”。在我在过滤器字段中键入文本后,延迟数据表未能调用其加载方法,我遇到了非常烦人的问题。在浪费了很多时间之后,我最终意识到浏览器在默认模式 7 下运行。数据表延迟加载适用于模式 8、9、10
  2. 如果您的惰性数据表在对话框中,请确保将对话框放在表单中,否则,在过滤器字段中键入值将不会提交给 load 方法。
于 2017-11-07T07:34:32.127 回答