Create table columns dynamically in JSF

前端 未结 1 1912
遥遥无期
遥遥无期 2020-12-01 22:22

I\'m working on dashboard application where I have to retrieve a set of records and display in dynamic tables boxes. Page frame length is fixed. now of columns and rows can

1条回答
  •  借酒劲吻你
    2020-12-01 23:11

    You can achieve this with standard JSF components using a wherein is been used to generate the cells during the view build time. The won't work as that runs during view render time.

    
        
            
                
            
        
    
    

    As to component libraries, I don't see anything in OpenFaces' showcase, but PrimeFaces has a for exactly this purpose, even with pagination support.

    
        
            
        
    
    

    0 讨论(0)
提交回复
热议问题