difference between panelGrid tag and dataTable
hi,
what is the difference between panelGrid tag and dataTable tag in jsf
hi,
what is the difference between panelGrid tag and dataTable tag in jsf
A panelGrid is useful when you have a fixed number of rows and columns. Each child component of the panelGrid is specified explicitly and arranged in a grid by the parent component.
A dataTable is useful when you have a collection of homogeneous data of indeterminate size. You specify the columns of the dataTable and it will iterate over your data creating one row per datum.