Creating a Step-by-Step NavigationBar

A step-by-step navigationBar is usually placed within the pageButtonBar component.

To create a step-by-step navigation bar:

  1. In the Design Structure Window of the desired file, expand the pageLayout node to locate the pageButtons node.

    If the pageLayout node is not visible, expand page | content | dataScope | document | body | form. The pageButtons node is under pageLayout Named Children in pageLayout.

  2. In the Component Palette, select Navigation Components from the dropdown list, and then drag and drop the pageButtonBar component from the list to the pageButtons node.

    The pageButtonBar node is inserted under the expanded pageButtons node.

  3. In the Component Palette, select Navigation Components from the dropdown list, and then drag and drop the navigationBar component from the list to the pageButtonBar node.

    The navigationBar node is inserted and highlighted under the expanded pageButtonBar node. The Property Inspector displays the properties of the new navigation bar.

  4. In the Property Inspector, set the following attributes for the step-by-step navigation bar:
  5. To insert a choice list for the step-by-step navigator, do the following:
    1. In the Design Structure Window, right-click the navigationBar component and select Insert inside | link .
    2. Set the link attributes in the Property Inspector.
    3. Repeat steps 5a and 5b to insert the desired number of link components.

Notes:

Example (UIX XML)


...
<pageLayout>
  
  <!-- Step-by-Step Navigator in pageButtons -->
  
  <pageButtons>
    <pageButtonBar>
      <contents>
        <button text="Cancel"/>
        <navigationBar name="checkout" maxValue="5" value="2"/>
        <button text="Submit"/>
      </contents>
    </pageButtonBar>
  </pageButtons>
  
  <!-- REST OF PAGE LAYOUT-->
  
</pageLayout>
...    

About NavigationBar
About PageButtonBar

Creating a PageButtonBar
Creating a Record NavigationBar
Working with Navigation Components
Working with Layout Components

 

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