我想将高度设置为行的默认大小。那可能吗? 我想要的是,即使表中没有数据,它也会有默认大小。 这是我的代码:
<p:dataTable id="models" var="model"
value="#{myManagedBean.lazyModel}"
rowKey="#{model.id}"
selection="#{myManagedBean.selectedRow}"
selectionMode="single"
paginator="true"
rows="20"
currentPageReportTemplate="{currentPage} of {totalPages} page(s) - {totalRecords} row(s)"
paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
lazy="true"
paginatorPosition="bottom"
style="white-space:nowrap!important; height:150px">
我试图将“身高:150px”放在风格中,但它不起作用。
答案 0 :(得分:2)
来自主要表面datatable scroll showcase:
<p:dataTable var="car" value="#{dtScrollView.cars1}" scrollable="true" scrollHeight="150">