2016-03-31 53 views
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> 

當表是空的,我降低了瀏覽器屏幕的大小,空的消息在第一列標題文本後顯示。重點在於,當屏幕尺寸正常時,該標題文本不會出現在空白消息之前。

有人有想法解決這個問題嗎?

+0

在PrimeFaces已知問題0.9.6 – Kukeltje

+0

建立一個快照發布由primefaces問題搜索,我發現它 - > https://github.com/primefaces/primefaces/issues/1226 – Islon

+0

我開玩笑說讓你告訴你的版本。但我確實知道有報道。好,你找到了。但說明你的版本總是有幫助的。 – Kukeltje

回答

0

這是固定在PrimeFaces 5.3.9精英釋放,在即將到來的6.0,其中您可以從源GitHub的

+0

謝謝您的信息! :d – Islon

相關問題