简体   繁体   中英

Primefaces: PanelGrid in Datatable LiveScroll

Is there anyone who tried that? When it loads more panelGrid, table just duplicates them. this picture result of that simple code block . Upper side shows how should it be rendered in a proper way but it goes wrong like at the down side.

         <p:dataTable liveScroll="true" value="#{PanelController.panelList2}" var="GridPanel" scrollable="true" scrollRows="20" scrollHeight="100" rows="5">
               <p:column>
                   <p:panelGrid>
                       <p:row>
                           <p:column>
                               <h:outputText value="ehehe"></h:outputText>
                           </p:column>
                       </p:row>
                   </p:panelGrid>
               </p:column>
       </p:dataTable>

If it was up to me I'd use the p:dataScroller und then use the panelgrid inside that. Take a look at this: http://www.primefaces.org/showcase/ui/data/datascroller/inline.xhtml

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM