Allows selection of the number of rows displayed by an
iterator control.
Category
Extension Library
Syntax
<xe:pagerSizes attributes>content</xe:pagerSizes>
Table 1. Essential properties
id |
Defaults to pagerSizes1 , pagerSizes2 ,
and so on. |
for |
Identifies the iterator control. Not
needed if this control is a facet of the iterator control. |
sizes |
Specifies the choices for the number
of rows. Separate choices with the vertical bar (| )
character. The keyword all means all rows. |
Table 2. All properties
accessibility |
ariaLabel |
basics |
binding, for, id, loaded, partialExecute, partialRefresh, refreshId, rendered, rendererType, sizes, text |
styling |
disableTheme, style, styleClass, themeId |
Usage
The user is presented with a display
that allows the selection of a number of rows or all rows.
Examples
Here a data view contains a Pager
Sizes control to set the number of rows displayed.<xe:dataView id="dataView1" columnTitles="true" collapsibleRows="true">
<xp:this.facets>
<xe:pagerSizes id="pagerSizes1" xp:key="pagerTopLeft"
sizes="4|8|all">
</xe:pagerSizes>
</xp:this.facets>
<xe:this.data>
<xp:dominoView var="view1" viewName="main"
expandLevel="2">
</xp:dominoView>
</xe:this.data>
<xe:this.summaryColumn>
<xe:viewSummaryColumn columnName="subject"
columnTitle="subject">
</xe:viewSummaryColumn>
</xe:this.summaryColumn>
</xe:dataView>