Setting a Style for Items in a SideBar

To set a style for items in a sideBar:

  1. In the Design Structure Window of the desired file, select the styledList node under sideBar.

    If the sideBar node is not visible, expand page | content | dataScope | document | body | form | pageLayout | pageLayout Named Children | start.

  2. In the Property Inspector, set the listStyle attribute for the styledList component. The available options are: disc (default), circle, square, decimal, lowerAlpha, upperAlpha, and none. Note that the letters used for lowerAlpha and upperAlpha are the 26 letters of the English language.

Example (UIX XML)


...
<pageLayout>
  
  <!-- Level 3 Navigation -->
  
  <start>
    <sideBar>
      <contents>
        <styledList listStyle="decimal">
          <contents>
            <styledItem>
              <contents>
                <link text="Beverages" destination="http://www.oracle.com" />
              </contents>
            </styledItem>
            ...
          </contents>
        </styledList>
      </contents>
    </sideBar>
  </start>
  
  <!-- REST OF PAGE LAYOUT-->
  
</pageLayout>
...    

About TabBar, GlobalHeader, SideBar, and SubTabBar
About GlobalButton

Inserting Vertical Spacing Between Items in a SideBar
Inserting a Component Above the Indexed Children of a SideBar Using Filter
Creating a TabBar
Creating a GlobalHeader
Creating a SideBar
Creating a SubTabBar
Working with Navigation Components

 

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