list - List Container

Organizes constituent controls into a vertical bullet list.

Category

Extension Library

Syntax

<xe:list attributes>content</xe:list>
Table 1. Essential properties
Property Description
id Defaults to list1, list2, and so on.
Table 2. All properties
Category Properties
basics binding, id, loaded, rendered, rendererType
styling disableTheme, firstItemStyle, firstItemStyleClass, itemStyle, itemStyleClass, lastItemStyle, lastItemStyleClass, style, styleClass, themeId

Usage

This control is intended to contain controls that display text.

Examples

This example displays a vertical list of three elements.
<xp:label value="Here is a list:" id="label4"></xp:label>
<xe:list id="list1">
	<xp:label value="Element one" id="label1"></xp:label>
	<xp:label value="Element two" id="label2"></xp:label>
	<xp:label value="Element three" id="label3"></xp:label>
</xe:list>