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.

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>