The panelSeries component provides a mechanism for dynamically generating a series of repeating
child-components within a panel. This component renders its child components in an iterative fashion
similar to way the dataTable component renders data rows. However, the panelSeries component is more
flexibile in that it can render a series of arbitrarily complex child components. The dataset can be
defined and used by implementing the value and var attributes respectively.
| Attributes |
| Name | Required | Request-time | Type | Description |
| first | false | false | java.lang.String |
Zero-relative row number of the first row to be displayed. If this
property is set to zero, rendering will begin with the first row of
the underlying data.
|
| rows | false | false | java.lang.String |
The number of rows to display, starting with the one identified by the
"first" property. If this value is set to zero, all available rows in
the underlying data model will be displayed. If this value is set to -1
no rows will be displayed.
|
| value | false | false | java.lang.String |
The current value of this component.
|
| var | false | false | java.lang.String |
Name of a request-scope attribute under which the model data for the
row selected by the current value of the "rowIndex" property (i.e.
also the current value of the "rowData" property) will be exposed.
|
| style | false | false | java.lang.String |
CSS style(s) to be applied when this component is rendered.
|
| styleClass | false | false | java.lang.String |
Space-separated list of CSS style class(es) to be applied when
this element is rendered. This value must be passed through
as the "class" attribute on generated markup.
|
| rendered | false | false | java.lang.String | If false, this component will not be rendered. |