Organizes constituent controls into a horizontal list.
Category
Extension Library
Syntax
<xe:listInline attributes>content</xe:listInline>
Table 1. Essential properties
Property |
Description |
id |
Defaults to listInline1 , listInline2 ,
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 horizontal
list of three elements.
<xp:label value="Here is an inline list:" id="label4"></xp:label>
<xe:listInline 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:listInline>