0
我試圖使用我的頁面resposive使用primefaces。但是我對錶格有一些問題,特別是當表格是空的時候。Primefaces迴流表 - 在第一列標題文本之後開始空消息
這是我的表碼:
<p:dataTable id="tabela"
var="minLote"
value="#{associarLoteBean.minLotes}"
rowKey="#{minLote.idLote}"
selectionMode="single"
selection="#{associarLoteBean.minLoteSelecionado}"
paginator="true"
reflow="true"
emptyMessage="#{txt.no_herds_on_the_table}">
<p:ajax event="rowSelect" listener="#{associarLoteBean.onRowSelectDataTable}" />
<p:column headerText="#{txt.herd}"
filterBy="#{minLote.descricao}" filterStyle="display:none">
<h:outputText value="#{minLote.lote}" />
</p:column>
<p:column headerText="#{txt.property}"
filterBy="#{minLote.propriedade}" filterStyle="display:none">
<h:outputText value="#{minLote.propriedade}" />
</p:column>
<p:column headerText="#{txt.current_pasture}"
filterBy="#{minLote.pasto}" filterStyle="display:none">
<h:outputText value="#{minLote.pasto}" />
</p:column>
<p:column headerText="#{txt.animals_in_herd}"
filterBy="#{minLote.animais}" filterStyle="display:none">
<h:outputText value="#{minLote.animais}" />
</p:column>
</p:dataTable>
當表是空的,我降低了瀏覽器屏幕的大小,空的消息在第一列標題文本後顯示。重點在於,當屏幕尺寸正常時,該標題文本不會出現在空白消息之前。
有人有想法解決這個問題嗎?
在PrimeFaces已知問題0.9.6 – Kukeltje
建立一個快照發布由primefaces問題搜索,我發現它 - > https://github.com/primefaces/primefaces/issues/1226 – Islon
我開玩笑說讓你告訴你的版本。但我確實知道有報道。好,你找到了。但說明你的版本總是有幫助的。 – Kukeltje