linksList - List of Links

Organizes constituent nodes into a horizontal list of links.

Category

Extension Library

Syntax

<xe:linksList attributes>content</xe:linksList>
Table 1. Essential properties
Property Description
id Defaults to linksList1, linksList2, and so on.
treeNodes Specifies nodes for the list.
Table 2. All properties
Category Properties
basics binding, id, loaded, rendered, rendererType, treeNodes
events onItemClick
styling disableTheme, style, styleClass, themeId

Usage

This control is intended to contain nodes that display and act as links.

This control is not tested against the latest accessibility standards. The recommended accessible path is to use core controls to achieve the desired effect.

Examples

This example displays a horizontal list of two elements.
<xp:label value="Here is a links list:" id="label4"></xp:label>
<xe:linksList id="linksList1">
	<xe:this.treeNodes>
		<xe:basicLeafNode href="http://www.ibm.com/" label="IBM"></xe:basicLeafNode>
		<xe:basicLeafNode href="http://www.google.com/" label="Google"></xe:basicLeafNode>
	</xe:this.treeNodes>
</xe:linksList>