The componentslist component Shows the components for each data with pagination.
The componentslist Component has the following capabilities :
The default componentsList renderer is link to the f_componentslist javascript class. f_componentslist extends f_component, fa_pagedComponent
Table of component style classes:
| Style Name | Description |
|---|---|
| f_componentslist | Defines styles for the wrapper DIV element. Contains a Table |
| f_componentslist_cell | Defines styles for the wrapper TD element for the row. |
<div style="padding: 10px">
<v:componentsList id="dl1" rows="8" width="400" var="row" value="#{timeZones}" columnNumber="2">
<h:column>
<v:box>
<v:text text="#{row.ID}" />
<v:textEntry />
</v:box>
</h:column>
<h:column>
<v:box>
<v:checkButton text="OK" />
</v:box>
</h:column>
</v:componentsList>
<br />
</div>
<v:pager for="dl1" width="400" />