Creating a List Using BulletedList

To create a list using bulletedList:

  1. In the Design Structure Window of the desired file, locate the parent node in which you wish to insert a bulletedList component (e.g., header).
  2. In the Component Palette, select Simple Components from the dropdown list, and then drag and drop the bulletedList component to the parent node of your choice.

    The bulletedList node is inserted and highlighted under the expanded parent node in the Design Structure Window.

  3. Right-click the bulletedList node and choose Insert inside bulletedList | link.

    The link node is inserted and highlighted under the expanded bulletedList node.

  4. In the Property Inspector, set the desired attributes for the link (for example text and destination).
  5. Repeat steps 3 and 4 to add additional indexed children as desired.
  6. To set the rows attribute for the bulletedList component, do the following:
    1. In the Design Structure Window, select the bulletedList node.
    2. In the Property Inspector, enter a value for the rows attribute. This value is a multiple of the number of visible indexed children in the list.

Note: To use data binding, see Data Binding a Component Attribute.

Example (UIX XML)


...
<pageLayout>

<!-- Insert a bulleted list. This list will display in two columns. -->

  <contents>
...
    <bulletedList rows="6">
      <contents>
        <link text="link 1" destination="http://www.oracle.com"/>
        <link text="link 2" destination="http://www.oracle.com"/>
        <link text="link 3" destination="http://www.oracle.com"/>
        <link text="link 4" destination="http://www.oracle.com"/>
        <link text="link 5" destination="http://www.oracle.com"/>
        <link text="link 6" destination="http://www.oracle.com"/>
        <link text="link 7" destination="http://www.oracle.com"/>
      </contents>
    </bulletedList>
...
  </contents>

<!-- Rest of page layout -->

</pageLayout>
...    

About BulletedList
About StyledList and StyledItem

Working with Simple and Miscellaneous Components
Working with Layout Components

 

Copyright © 1997, 2004, Oracle. All rights reserved.