listSeparator - List Separator

Separates horizontal list elements with a vertical bar.

Category

Extension Library

Syntax

<xe:listSeparator attributes>content</xe:listSeparator>
Table 1. Essential properties
Property Description
id Defaults to listSeparator1, listSeparator2, and so on.
Table 2. All properties
Category Properties
basics binding, id, loaded, rendered, rendererType
styling disableTheme, themeId

Usage

This control is intended to be placed between display controls in a horizontal list.

Examples

This example displays a horizontal list of three elements with separators.
<xp:label value="Here is an inline list with separators:" id="label4"></xp:label>
<xe:listInline id="list1">
	<xp:label value="Element one" id="label1"></xp:label>
	<xe:listSeparator id="listSeparator1"></xe:listSeparator>
	<xp:label value="Element two" id="label2"></xp:label>
	<xe:listSeparator id="listSeparator2"></xe:listSeparator>
	<xp:label value="Element three" id="label3"></xp:label>
</xe:listInline>