dataView - Data View
Displays data as a view.
Category
Extension LibrarySyntax
<xe:dataView attributes>content</xe:dataView>
Property | Description |
---|---|
id | Defaults to dataView1 , dataView2 ,
and so on. |
data | Identifies the data source, usually a Domino(r)® view, and specifies attributes for its display. |
summaryColumn | Defines a column that provides links to the underlying documents. |
multiColumnCount | Specifies the number of number of documents displayed on each row. Defaults to one document per row. |
Category | Properties |
---|---|
accessibility | ariaLabel, role, summary Note: The
role property is obsolete starting with 9.0.1. By default the appropriate
compliant value is generated. For compliance with accessibility standards,
do not specify a value for this property. |
basics | attrs, binding, detailsOnClient, expandedDetail, id, loaded, pageName, partialExecute, partialRefresh, refreshId, removeRepeat, rendered, rendererType, repeatControls |
data | data, first, indexVar, openDocAsReadOnly, rows, value, var |
format | categoryColumn, collapsibleCategory, collapsibleDetail, collapsibleRows, columnTitles, disableHideRow, extraColumns, iconColumn, infiniteScroll, multiColumnCount, showCheckbox, showHeadrCheckbox, showItemsFlat, summaryColumn |
styling | disableTheme, rowStyle, rowStyleClass, style, styleClass, themeId |
Examples
This data view displays the data from a view column as links.<xe:dataView id="dataView1" rows="20"
collapsibleDetail="true" collapsibleRows="true" expandedDetail="true"
multiColumnCount="4" showItemsFlat="true">
<xe:this.data>
<xp:dominoView var="view1" viewName="main"></xp:dominoView>
</xe:this.data>
<xe:this.summaryColumn>
<xe:viewSummaryColumn columnName="subject">
</xe:viewSummaryColumn>
</xe:this.summaryColumn>
</xe:dataView>