This topic describes the procedure for creating a subtab layout that renders subtabs at the top and bottom (with indexed children in between). These subtabs are created by using the subTabLayout and subTabs components.
Note: Subtabs that are rendered once only (at the top) are created by a series of link components as indexed children of subTabBar. See Creating a SubTabBar for instructions.
To insert a subtab using subTabLayout:
The subTabLayout node is inserted and highlighted under the expanded parent node.
The subTabBar node is inserted and highlighted under the subTabs node.
The new link node is inserted and highlighted in the Structure Window. The Property Inspector displays the properties of the new component.
Subtabs are placed in the main content area of a page, and rendered before and after a series of indexed children. The subtabs are displayed in sequence horizontally; the first subtab in the sequence is numbered 0, the second subtab is numbered 1, and so on.
Note: To use data binding, see Data Binding a Component Attribute.
...
<pageLayout>
<contents>
<!-- Sub Tab Layout-->
<subTabLayout>
<subTabs>
<subTabBar selectedIndex="1">
<contents>
<link text="ADF UIX Components" destination="http://www.oracle.com"/>
<link text="Documentation" destination="http://www.oracle.com"/>
<link text="Architecture" destination="http://www.oracle.com"/>
<link text="Release" destination="http://www.oracle.com" disabled="true"/>
</contents>
</subTabBar>
</subTabs>
</subTabLayout>
</contents>
<!-- REST OF PAGE LAYOUT -->
</pageLayout>
...
About SubTabLayout and its Named Children
Inserting Indexed Children in a
SubTabLayout
Enabling
Partial Page Rendering for a SubTabLayout
Working with Layout Components
Copyright © 1997, 2004, Oracle. All rights reserved.