pagerExpand - Pager Expand/Collapse

Expands or collapses all the rows of an iterator control.

Category

Extension Library

Syntax

<xe:pagerExpand attributes>content</xe:pagerExpand>
Table 1. Essential properties
Property Description
id Defaults to pagerExpand1, pagerExpand2, and so on.
for Identifies the iterator control. Not needed if this control is a facet of the iterator control.
Table 2. All properties
Category Properties
accessibility ariaLabel
basics binding, collapseText, expandText, for, id, loaded, partialExecute, partialRefresh, refreshId, rendered, rendererType
styling disableTheme, style, styleClass, themeId

Examples

Here a data view contains a Pager Expand/Collapse control to toggle its display.
<xe:dataView id="dataView1" columnTitles="true"
collapsibleDetail="true" collapsibleRows="true" expandedDetail="true" var="entry">
	<xp:this.facets>
		<xe:pagerExpand id="pagerExpand1"
			xp:key="pagerBottomLeft">
		</xe:pagerExpand>
	</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>