This topic describes the steps for creating a styled list of items in a contentContainer component
To create a contentContainer:
If the pageLayout node is not visible, expand page | content | dataScope | document | body | form. The end node is under pageLayout Named Children in pageLayout.
The new contentContainer node is inserted and highlighted in the Structure Window. The Property Inspector displays the properties of the new component.
The styledList node is inserted under the expanded contentContainer node.
The styledItem node is inserted under the expanded styledList node.
The link node is inserted and highlighted in the Structure Window. The Property Inspector displays the properties of the link component.
Items are displayed in sequence vertically; 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>
<!-- Use end to insert content container -->
<end>
<contentContainer text="Put title here"
background="medium"
icon="images/info.gif"
width="25%">
<contents>
<styledList listStyle="circle" selectedIndex="0">
<contents>
<styledItem>
<contents>
<link text="Code Samples" destination="http://www.oracle.com"/>
</contents>
</styledItem>
<styledItem>
<contents>
<link text="Documentation" destination="http://www.oracle.com"/>
</contents>
</styledItem>
</contents>
</styledList>
</contents>
</contentContainer>
</end>
<!-- REST OF PAGE LAYOUT -->
</pageLayout>
...
About ContentContainer
About PageLayout and its Named Children
Creating a Hierarchical List
Using StyledList and StyledItem
Creating a List Using StyledList and StyledItem
Working with PageLayout and its Named Children
Copyright © 1997, 2004, Oracle. All rights reserved.