我正在使用下面的XHTML,但是Lazy Loading数据表不起作用我的意思是不显示任何东西。
<div>
<p:panelGrid cellspacing="15" cellpadding="10" style="width:750px;">
<p:dataTable var="studyPlanList" value="#{editBean.lazyModel}" paginator="true" rows="10"
paginatorTemplate="{RowsPerPageDropdown} {FirstPageLink} {PreviousPageLink} {CurrentPageReport} {NextPageLink} {LastPageLink}"
rowsPerPageTemplate="5,10,15" selectionMode="single" selection="" id="studyPlanTable">
<p:column headerText="StudyPlan" >
<h:outputText value="#{studyPlanList.name}" />
</p:column>
</p:dataTable>
</p:panelGrid>
</div>