styledListと子であるlabelを使用して階層リストを作成するには、次のようにします。
「styledList」ノードが設計構造ウィンドウに挿入され、強調表示されます。
「label」および「separator」という2つの名前付きの子があります。
「styledItem」ノードが、設計構造ウィンドウの展開された「label」ノードに挿入され、強調表示されます。
「link」ノードが、展開された「styledItem」ノードに挿入され、強調表示されます。これは内側のリストの最初の索引付けされた子です。
注意: データ・バインディングの使用は、「コンポーネント属性のデータ・バインディング」を参照してください。
...
<pageLayout>
...
<!-- StyledList embedded in a StyledList -->
<styledList selectedIndex="2">
<contents>
<styledItem >
<contents>
<link text="Link 1 Text" destination="http://www.oracle.com"/>
</contents>
</styledItem>
<styledItem>
<contents>
<link text="Link 2 Text" destination="http://www.oracle.com"/>
</contents>
</styledItem>
<styledList listStyle="decimal">
<!-- First indexed child of inner list -->
<label>
<styledItem>
<contents>
<link text="Link 3 Text" destination="http://www.oracle.com"/>
</contents>
</styledItem>
</label>
<!-- Separator named child of inner list -->
<separator>
<spacer height="10"/>
</separator>
<!-- Other indexed children of inner list -->
<contents>
<styledItem>
<contents>
<link text="Link 3-1 Text" destination="http://www.oracle.com"/>
</contents>
</styledItem>
<styledItem>
<contents>
<link text="Link 3-2 Text" destination="http://www.oracle.com"/>
</contents>
</styledItem>
</contents>
</styledList>
<styledItem>
<contents>
<link text="Link 4 Text" destination="http://www.oracle.com"/>
</contents>
</styledItem>
</contents>
</styledList>
...
<!-- REST OF PAGE LAYOUT -->
<pageLayout>
...
styledListとstyledItemについて
bulletedListについて
styledListおよびstyledItemを使用したリストの作成
styledListの索引付けされた子の間への垂直間隔の挿入
レイアウト・コンポーネントの使用
Copyright © 1997, 2004, Oracle. All rights reserved.