To create a list using styledList and styledItem:
The styledList node is inserted and highlighted under the expanded parent node.
The styledItem node is inserted and highlighted under the expanded styledList node.
The link node is inserted and highlighted under the expanded styledItem node.
Items of a list are displayed vertically in sequence; the first item in the sequence is numbered 0, the second item is numbered 1, and so on.
Note: To use data binding, see Data Binding a Component Attribute.
...
<pageLayout>
...
<styledList listStyle="decimal" selectedIndex="1">
<contents>
<styledItem >
<contents>
<link text="Link 1 Text" destination="http://www.oracle.com"/>
</contents>
</styledItem>
<styledItem>
<contents>
<link text="Link 2 Text" destination="http://www.oracle.com"/>
</contents>
</styledItem>
<styledItem>
<contents>
<link text="Link 3 Text" destination="http://www.oracle.com"/>
</contents>
</styledItem>
</contents>
</styledList>
...
<!-- REST OF PAGE LAYOUT -->
<pageLayout>
...
About StyledList and StyledItem
About BulletedList
Creating a Hierarchical List
Using StyledList and Label
Inserting Vertical Spacing Between Indexed Children of a StyledList
Working with Layout Components
Copyright © 1997, 2004, Oracle. All rights reserved.