Inserting a Header

Note: You can insert a header within a header component, that is, create a subheader.

To insert a section in a page using the header component:

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

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

  2. In the Component Palette, select Layout Components from the dropdown list, and then drag and drop the header component to the pageLayout node.

    The header node is inserted and highlighted in the Design Structure Window. The Property Inspector displays the properties of the header component.

  3. In the Property Inspector, set the following attributes for the header component:

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

  4. To add contents into the header, drag and drop a component from the Component Palette to the header node. Repeat to add the desired number of components. Components are placed consecutively in the order in which they are added.

Example (UIX XML)


...
<pageLayout>
  
  <!-- Create Headers -->
  
  <contents>
    <header text="Developing ADF UIX Applications">
      <contents>
        <!-- Add content here -->
      </contents>
    </header> 
    <header text="Deploying ADF UIX Applications">
      <contents>
        <!-- Add content here -->
      </contents>
    </header>  
    <header text="This one has subheaders">
      <contents>
        <header text="Subheader">
          <contents>
            <header text="Subsubheader">
              <contents>
                <!-- Add content here -->
              </contents>
            </header>
          </contents> 
        </header> 
      </contents>
    </header>  
  </contents>
  
  <!-- REST OF PAGE LAYOUT -->
  
</pageLayout>
...    

About Header
About HideShowHeader

Inserting a HideShowHeader Component
Working with Layout Components

 

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