リファレンス: ADF Facesコンポーネント

ADF Facesには、次のコンポーネント・タグ・ライブラリが用意されています。

ライブラリ構文

JSPページ

<%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af" %>
<%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh" %>     

JSPドキュメント

<jsp:root xmlns:af="http://xmlns.oracle.com/adf/faces">
<jsp:root xmlns:afh="http://xmlns.oracle.com/adf/faces/html">    

タグ構文の使用方法

サポートされるすべての属性が、大カッコ([ ])内に示されます。属性の後に配置されるアスタリスク(*)は、値が必要であることを意味します。該当する場合は、デフォルトの値が提供されます(例: [disabled="false"])。有効値のリストがある場合は、値が|で区切られ、デフォルト値は太字で表示されます。該当する場合は、サポートされる子とファセットのコンポーネントも示されます。

ADF Faces Coreライブラリ

コンポーネント・タグ 構文
af:attribute - JSF 1.1_01の<f:attribute>タグに置き換わるものです。value属性のValueBindingを、後で評価するためにコンポーネントに設定して処理します。
<af:attribute
  [name]
  [value] />          
af:chooseColor- 色を選択するための標準またはカスタムのインライン・パレットを作成します。af:selectInputColor を併用します。
<af:chooseColor
  [colorData]
  [customColorData]
  [width]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] />          
af:chooseDate-af:selectInputDate コンポーネントと併用するためのインライン日付ピッカーを作成します。
<af:chooseDate
  [maxValue]
  [minValue]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] />          
af:column - tableコンポーネントに列を作成します。
<af:column
  [headerText]
  [formatType="text"]
  [sortable="false"]
  [sortProperty]
  [bandingShade]
  [gridVisible="true"]
  [headerNoWrap="false"]
  [noWrap="false"]
  [partialTriggers]
  [rowHeader="false"]
  [separateRows="false"]
  [width]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="header"/>
  <f:facet name="footer"/>

  <!-- child component -->

</af:column>          
af:commandButton - コマンド・コンポーネントのボタン表現を作成します。
<af:commandButton
  [text="commandButton 1"]
  [action]
  [actionListener]
  [launchListener]
  [partialSubmit="false"]
  [returnListener]
  [accessKey]
  [blocking="false"]
  [disabled="false"]
  [immediate="false"]
  [partialTriggers]
  [textAndAccessKey]
  [useWindow="false"]
  [windowHeight]
  [windowWidth]
  [Other General and Core attributes]
  [Event attributes] />          
af:commandLink - コマンド・コンポーネントのリンク表現を作成します。f:paramをサポートします。
<af:commandLink
  [text="commandLink 1"]
  [action]
  [actionListener]
  [launchListener]
  [partialSubmit="false"]
  [returnListener]
  [accessKey]
  [blocking="false"]
  [disabled="false"]
  [immediate="false"]
  [partialTriggers]
  [textAndAccessKey]
  [useWindow="false"]
  [windowHeight]
  [windowWidth]
  [Other General and Core attributes]
  [Event attributes] />          
af:commandMenuItem - コマンド・コンポーネントのメニュー項目表現を作成します。
<af:commandMenuItem
  [text="commandMenuItem 1"]
  [action]
  [actionListener]
  [launchListener]
  [returnListener]
  [accessKey]
  [disabled="false"]
  [icon]
  [immediate="false"]
  [partialTriggers]
  [readOnly="false"]
  [selected="false"]
  [textAndAccessKey]
  [type]
  [useWindow="false"]
  [windowHeight]
  [windowWidth]
  [Other General and Core attributes]
  [Event attributes] />          
af:convertColor- 文字列を java.awt.Color objectに(またはその逆に)変換します。
<af:convertColor
  [convertMessageDetail]
  [patterns="#RRGGBB r,g,b"]
  [transparentAllowed] />          
af:convertDateTime - 文字列をjava.util.Date objectに(またはその逆に)変換します。
<af:convertDateTime
  [convertBothMessageDetail]
  [convertDateMessageDetail]
  [convertTimeMessageDetail]
  [dateStyle=shortish|short|medium|long|full]
  [locale]
  [pattern]
  [secondaryPattern]
  [timeStyle=default|short|long|medium|full]
  [timeZone]
  [type=date|time|both] />          
af:convertNumber - javax.faces.convert.NumberConverterの拡張機能です。オブジェクトへの変換では厳密に機能します。
<af:convertNumber
  [convertCurrencyMessageDetail]
  [convertNumberMessageDetail]
  [convertPatternMessageDetail]
  [convertPercentMessageDetail]
  [currencyCode]
  [currencySymbol]
  [groupingUsed]
  [integerOnly="false"]
  [locale]
  [maxFractionDigits]
  [maxIntegerDigits]
  [minFractionDigits]
  [minIntegerDigits]
  [pattern]
  [type=number|percent|currency]
 />          
af:document - afh:htmlafh:headおよびafh:bodyの各タグのかわりに、またはHTMLページの標準のルート要素である<html><body>および<head>のかわりに使用します。
<af:document
  [title="Title 1"]
  [intialFocusId]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="metaContainer"/>

</af:document>          
af:forEach- ADF Facesコンポーネントで使用するJSTLの <c:forEach>タグに置き換わるものです。「af:iterator」も参照してください。
<af:forEach
  [begin]
  [end]
  [items]
  [step]
  [var]
  [varStatus] />          
af:form - HTMLの<form>要素を作成します。
<af:form
  [defaultCommand]
  [partialTriggers]
  [targetFrame]
  [usesUpload="false"]
  [Other General and Core attributes]
  [Event attributes] />          
af:goButton- アクションを渡さずに別の位置に直接移動するボタンを作成します。 サーバー側のアクションが不要なときは、commandButtonのかわりに使用します。
<af:goButton
  [text="goButton 1"]
  [destination]
  [accessKey]
  [disabled="false"]
  [longDesc]
  [partialTriggers]
  [targetFrame]
  [textAndAccessKey]
  [Other General and Core attributes]
  [Event attributes] />          
af:goLink - アクションを渡さずに別の位置に直接移動するHTMLリンクを作成します。 サーバー側のアクションが不要なときは、単独で使用するか、メニュー・コンポーネント内で使用できます。
<af:goLink
  [text="goLink 1"]
  [destination]
  [accessKey]
  [disabled="false"]
  [longDesc]
  [partialTriggers]
  [targetFrame]
  [textAndAccessKey]
  [Other General and Core attributes]
  [Event attributes] />          
af:goMenuItem - UIXGoコンポーネントのメニュー項目表現を作成します。これは、MenuModelオブジェクト(menuBarmenuTabsなど)を受け入れるコンポーネントのスタンプとして使用されます。
<af:goMenuItem
  [text="goMenuItem 1"]
  [destination]
  [acessKey]
  [disabled="false"]
  [icon]
  [longDesc]
  [partialTriggers]
  [readOnly="false"]
  [selected="false"]
  [targetFrame]
  [textAndAccessKey]
  [type]
  [Other General and Core attributes]
  [Event attributes] />          
af:importScript- ビルトイン・スクリプトのインポートをADF Facesでサポートするために使用します。 このコンポーネントを使用すると、JavaScriptハンドラで使用する前に、JavaScript関数が使用可能かどうかを確認できます。
<af:importScript
  [names="importScript 1"]
  [binding]
  [id]
  [rendered="true"] />          
af:inputFile - ファイルのアップロードに使用します。このコンポーネントが挿入されているフォームでは、usesUpload属性をtrueに設定し、ADF Facesのフィルタがインストールされている必要があります。
<af:inputFile
  [label="Label 1"]
  [requiredMessageDetail]
  [validator]
  [value]
  [valueChangeListener]
  [tip]
  [accessKey]
  [columns]
  [disabled="false"]
  [immediate="false"]
  [labelAndAccessKey]
  [partialTriggers]
  [required="false"]
  [simple="false"]
  [valign]
  [converter]
  [showRequired]
  [messageDescUrl]
  [messageTargetFrame]
  [Other General and Core attributes]
  [Event attributes] />          
af:inputHidden - フォームとともに発行されるが、ユーザーには表示されない値を追加します。
<af:inputHidden
  [requiredMessageDetail]
  [validator]
  [value]
  [valueChangeListener]
  [immediate="false"]
  [required="false"]
  [converter]
  [binding]
  [id]
  [rendered="true"] />          
af:inputText - 単一行または複数行のテキスト入力フィールドを作成します。
<af:inputText
  [value]
  [columns]
  [label="Label 1"]
  [requiredMessageDetail]
  [rows="1"]
  [validator]
  [valueChangeListener]
  [tip]
  [accessKey]
  [autoSubmit="false"]
  [disabled="false"]
  [immediate="false"]
  [labelAndAccessKey]
  [maximumLength]
  [partialTriggers]
  [readOnly="false"]
  [required="false"]
  [secret="false"]
  [simple="false"]
  [valign]
  [wrap]
  [converter]
  [showRequired]
  [messageDescUrl]
  [messageTargetFrame]
  [Other General and Core attributes]
  [Event attributes] />          
af:iterator - JSFのDataModelまたはCollectionModelで機能する反復を実装し、コンポーネント管理のEL変数を使用するEL式にバインドできます。af:forEachと比較してください。
<af:iterator
  [rows="25"]
  [value]
  [var]
  [varStatus]
  [first="0"]
  [binding]
  [id]
  [rendered="true"] />          
af:menuBar - ナビゲーション階層の1つのレベルを表現する水平バーに一連のテキスト・メニュー項目を作成します。メニュー・モデルにバインドして、メニュー階層の第2レベルとして表示できます。
<af:menuBar
  [var]
  [varStatus]
  [value]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="nodeStamp">
    <af:commandMenuItem />
  </f:facet>

</af:menuBar>          
af:menuButtons - 一連のメニュー・ボタンを作成します。メニュー・モデルにバインドできます。
<af:menuButtons
  [var]
  [varStatus]
  [value]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="nodeStamp">
    <af:commandMenuItem />
    <af:goMenuItem />
  </f:facet>

</af:menuButtons>          
af:menuChoice - ユーザーがアプリケーションを選択できるドロップダウン・リストを作成します。メニュー・モデルにバインドできます。
<af:menuChoice
  [var]
  [varStatus]
  [disabled="false"]
  [partialTriggers]
  [title]
  [value]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="nodeStamp">
    <af:commandMenuItem />
    <af:goMenuItem />
  </f:facet>

</af:menuChoice>          
af:menuList - ナビゲーション階層の1つのレベルを表現するメニュー項目のリストを作成し、各項目の横に黒丸、円、正方形、小文字、大文字または数字を表示します。メニュー・モデルにバインドして、メニュー階層の第3レベルとして表示できます。
<af:menuList
  [id]
  [listStyle="disc"]
  [var]
  [varStatus]
  [partialTriggers]
  [value]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="nodeStamp">
    <af:commandMenuItem />
    <af:goMenuItem />
  </f:facet>

</af:menuList>          
af:menuPath - 階層型のサイトで階層のルート・ページに戻る経路を示す一連のテキスト・リンク(垂直または水平方向)を作成します。メニュー・モデルにバインドできます。
<af:menuPath
  [var]
  [varStatus]
  [orientation="horizontal"]
  [partialTriggers]
  [value]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="nodeStamp">
    <af:commandMenuItem />
    <af:goMenuItem />
  </f:facet>

</af:menuPath>          
af:menuTabs - ナビゲーション階層の1つのレベルを表現する一連のタブ・メニュー項目を作成します。メニュー・モデルにバインドして、メニュー階層の最上位レベルとして表示できます。
<af:menuTabs
  [var]
  [varStatus]
  [partialTriggers]
  [value]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="nodeStamp">
    <af:commandMenuItem />
    <af:goMenuItem />
  </f:facet>

</af:menuTabs>          
af:menuTree - 階層形式に構造化されたメニュー・データを表示します。
<af:menuTree
  [value]
  [disclosureListener]
  [treeState]
  [var]
  [varStatus]
  [immediate="false"]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="nodeStamp">
    <af:commandMenuItem />
    <af:goMenuItem />
  </f:facet>

</af:menuTree>          
af:message - コンポーネントにかわってメッセージを表示します。simple属性が"true"に設定されているADF Faces入力コンポーネント、またはADF Faces以外の入力コンポーネントで使用します。
<af:message
  [for]*
  [tip]
  [message]
  [messageType="none"]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] />          
af:messages - pageまたはpanelPageコンポーネントのmessagesファセットと併用し、ページ上部に重要なメッセージ情報を表示します。
<af:messages
  [globalOnly="false"]
  [message]
  [partialTriggers]
  [text]
  [Other General and Core attributes]
  [Event attributes] />          
af:objectIcon - カスタムのskin-familyアイコンをレンダリングするために使用します。
<af:objectIcon
  [name="required"]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] />          
af:objectImage - イメージ・ファイルをレンダリングする際に使用します。
<af:objectImage
  [source]
  [borderWidth]
  [align]
  [height]
  [imageMapType="none"]
  [longDescURL]
  [partialTriggers]
  [width]
  [Other General and Core attributes]
  [Event attributes] />          
af:objectLegend - ルック・アンド・フィール・アイコンに凡例を追加する際に使用します。
<af:objectLegend
  [name="required"]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] />          
af:objectMedia - オーディオ、ビデオ、イメージなどのメディア・コンテンツをユーザー・エージェントの埋込みプレーヤに表示する際に使用します。
<af:objectMedia
  [source]
  [standbyText]
  [autostart="false"]
  [contentType]
  [controls="typical"]
  [height]
  [innerHeight]
  [innerWidth]
  [partialTriggers]
  [playCount]
  [player]
  [width]
  [Other General and Core attributes]
  [Event attributes] />          
af:objectSeparator - 水平線をセパレータとして表示する際に使用します。
<af:objectSeparator
  [partialTriggers]
  [binding]
  [id]
  [rendered="true"]
  [shortDesc] />          
af:objectSpacer - レイアウトに一定のスペースを配置する際に使用します。
<af:objectSpacer
  [height="10"]
  [width="10"]
  [partialTriggers]
  [binding]
  [id]
  [rendered="true"]
  [shortDesc] />          
af:ouputFormatted - 限定されたHTMLフォーマットを出力する際に使用します。
<af:ouputFormatted
  [value]
  [styleUsage]
  [converter]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] />          
af:outputLabel - レイアウト全体でさらに詳細な制御が必要な場合、フォーム・コンポーネントに、コンポーネントのビルトイン・ラベルがサポートするラベルとオプションのメッセージ・タイプ・アイコンを表示するために使用します。
<af:outputLabel
  [value="outputLabel 1"]
  [accessKey]
  [partialTriggers]
  [valueAndAccessKey]
  [converter]
  [anchor]
  [for]
  [messageDescUrl]
  [messageTargetFrame]
  [messageType="none"]
  [showRequired="false"]
  [Other General and Core attributes]
  [Event attributes] />          
af:outputText - エスケープ処理されていない可能性があるスタイル設定済テキストを表示する際に使用します。
<af:outputText
  [value="outputText 1"]
  [description]
  [escape="true"]
  [partialTriggers]
  [truncateAt="0"]
  [converter]
  [Other General and Core attributes]
  [Event attributes] />          
af:page - ページ全体のレイアウトに使用します。menuModelオブジェクトおよびnodeStampファセット(menu1menu2およびmenu3ファセットではなく)を使用して、ナビゲーションおよび他のコンテンツ領域をレンダリングします。
<af:page
  [title="Title 1"]
  [disclosureListener]
  [value]
  [var]
  [varStatus]
  [chromeType="compact"]
  [immediate="false"]
  [messageType="none"]
  [partialTriggers]
  [quickLinksShown="false"]

  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="actions"/>
  <f:facet name="appsAbout"/>
  <f:facet name="appsCopyright"/>
  <f:facet name="appsPrivacy"/>
  <f:facet name="branding"/>
  <f:facet name="brandingApp"/>
  <f:facet name="brandingAppContextual"/>
  <f:facet name="contextSwitcher"/>
  <f:facet name="infoFootnote"/>
  <f:facet name="infoReturn"/>
  <f:facet name="infoStatus"/>
  <f:facet name="infoSupplemental"/>
  <f:facet name="infoUser"/>
  <f:facet name="location"/>
  <f:facet name="menuSwitch"/>
  <f:facet name="messages"/>
  <f:facet name="nodeStamp"/>
  <f:facet name="search"/>

</af:page>          
af:panelBorder - 子コンポーネントをコンテナの中央に連続的にレイアウトするために使用します。また、ファセットを使用したその他12種類の事前定義位置でも使用します。
<af:panelBorder
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- any child component -->
  ...

  <f:facet name="bottom"/>
  <f:facet name="end"/>
  <f:facet name="innerBottom"/>
  <f:facet name="innerEnd"/>
  <f:facet name="innerLeft"/>
  <f:facet name="innerRight"/>
  <f:facet name="innerStart"/>
  <f:facet name="innerTop"/>
  <f:facet name="left"/>
  <f:facet name="right"/>
  <f:facet name="start"/>
  <f:facet name="top"/>

</af:panelBorder>          
af:panelBox - 色分けされたコンテナのページに補助的な情報を配置するために使用します。
<af:panelBox
  [background="light"]
  [icon]
  [text]
  [width]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes]  >

  <!-- container component -->

</af:panelBox>          
af:panelButtonBar - processChoiceBarおよびselectOneChoiceコンポーネントなどの一連のボタンをレイアウトするために使用します。
<af:panelButtonBar
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- child component -->
  ...

</af:panelButtonBar>          
af:panelForm - フォーム入力コンポーネント(selectManyShuttleおよびselectOrderShuttleを除く)のレイアウトに使用し、1つ以上の列で、ラベルとフィールドを垂直方向に揃えます。
<af:panelForm
  [fieldWidth]
  [labelWidth]
  [maxColumns]
  [rows]
  [width]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- any input child component -->
  ...

  <f:facet name="footer"/>

</af:panelForm>          
af:panelGroup - 子コンポーネントを垂直または水平方向に連続してレイアウトするために使用します。必要に応じて、隣り合った子コンポーネントのペアの間にオプションのセパレータを配置します。
<af:panelGroup
  [layout="default"]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- child components -->
  ...

  <f:facet name="separator"/>

</af:panelGroup>          
af:panelHeader - セクションの上部にラベルとオプションのアイコンを配置するために使用します。ページ上部で使用して、メッセージ・タイプで定義した重要なメッセージ情報を表示することもできます。ネストすることでサブヘッダーを作成できます。
<af:panelHeader
  [text="panelHeader 1"]
  [icon]
  [messageType="none"]
  [partialTriggers]
  [shortText]
  [size]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- child components -->
  ...
  <af:panelHeader/>

</af:panelHeader>          
af:panelHorizontal - 子コンポーネントを水平にレイアウトするために使用し、隣り合う子コンポーネントのペアの間にオプションでセパレータを配置します。
<af:panelHorizontal
  [hAlign]
  [vAlign]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- child components -->
  ...

  <f:facet name="separator"/>

</af:panelGroup>          
af:panelLabelAndMessage - ラベル、ヒントおよびインライン・メッセージを備えた1つ以上のフォーム入力コンポーネントをレイアウトするために使用します。複数のpanelLabelAndMessagepanelFormコンポーネント内部で使用できます。
<af:panelLabelandMessage
  [label="Label 1"]
  [tip]
  [accessKey]
  [contentStyleClass]
  [labelAndAccessKey]
  [partialTriggers]
  [valign]
  [anchor]
  [for]
  [message]
  [messageType="none"]
  [messageDescUrl]
  [messageTargetFrame]
  [showRequired="false"]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- child component -->
  ...

  <f:facet name="end"/>

</af:panelLabelAndMessage>          
af:panelList - 参照可能な子のリストを、各子の横に黒丸付きで垂直方向に表示するために使用します。rows属性の値が指定されている場合は、リストを複数の列に分割できます。
<af:panelList
  [rows]
  [maxColumns="3"]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- child component -->
  ...

</af:panelList>          
af:panelPage - ページ全体をmenu1menu2およびmenu3ファセット(menuModelオブジェクトおよびnodeStampファセットではなく)を使用してレイアウトし、ナビゲーションおよび他のコンテンツ領域をレンダリングするために使用します。
<af:panelPage
  [title="Title 1"]
  [chromeType="compact"]
  [messageType="none"]
  [partialTriggers]
  [quickLinksShown'"false"]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- content child component -->
  ...

  <f:facet name="actions"/>
  <f:facet name="appsAbout"/>
  <f:facet name="appsCopyright"/>
  <f:facet name="appsPrivacy"/>
  <f:facet name="branding"/>
  <f:facet name="brandingApp"/>
  <f:facet name="brandingAppContextual"/>
  <f:facet name="contextSwitcher"/>
  <f:facet name="infoFootnote"/>
  <f:facet name="infoReturn"/>
  <f:facet name="infoStatus"/>
  <f:facet name="infoSupplemental"/>
  <f:facet name="infoUser"/>
  <f:facet name="location"/>
  <f:facet name="menu1"/>
  <f:facet name="menu2"/>
  <f:facet name="menu3"/>
  <f:facet name="menuGlobal"/>
  <f:facet name="menuSwitch"/>
  <f:facet name="messages"/>
  <f:facet name="nodeStamp"/>
  <f:facet name="search"/>

</af:panelPage>          
af:panelPageHeader - ページ上部のレイアウトに使用します。
<af:panelPageHeader
  [chromeType="compact"]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="branding"/>
  <f:facet name="brandingApp"/>
  <f:facet name="brandingAppContextual"/>
  <f:facet name="menu1"/>
  <f:facet name="menu2"/>
  <f:facet name="menuGlobal"/>
  <f:facet name="menuSwitch"/>
  <f:facet name="search"/>

</af:panelPageHeader>          
af:panelPartialRoot - afh:bodyタグを使用できないページでの、UIComponentツリーまたはサブツリーの部分ページ・レンダリングを有効化するために使用します。1つのページに複数のpanelPartialRootブロックを使用できます。
<af:panelPartialRoot
  [partialTriggers]
  [binding]
  [id]
  [rendered="true"]
  [shortDesc] />          
af:panelSideBar - サイド・ナビゲーション・バーをレンダリングするために使用します。
<af:panelSideBar
  [width]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- child components -->
  ...

  <f:facet= name="filter"/>

</af:panelSideBar>          
af:panelTip - ページ・レベルまたはセクション・レベルのヒントに対するコンテナをユーザーに提供するために使用します。
<af:panelTip
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- child components -->
  ...

</af:panelTip>          
af:poll - ポーリング・イベントを定期的にトリガーするために使用します。
<af:poll
  [interval="5000"]
  [pollListener]
  [immediate="false"]
  [binding]
  [id]
  [rendered="true"] />          
af:processChoiceBar - 前へ戻るボタン、ドロップダウン・メニュー、および次へ進むボタンのレンダリングに使用します。ユーザーは、このコンポーネントを使用して、ページ・リスト内を前後に移動したり、特定のページにジャンプできます。
<af:processChoiceBar
  [value]
  [var]
  [varStatus]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="nodeStamp"/>

</af:processChoiceBar>          
af:processTrain - 複数ページの処理でページを表現する水平方向のイメージ・トレインとテキスト・リンクのレンダリングに使用します。
<af:processTrain
  [value]
  [var]
  [varStatus]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="nodeStamp"/>

</af:processTrain>          
af:progressIndicator - バックエンド・タスクが進行中であることを示す時計の針が回転するアニメーションを表示する際に使用します。プログレス・バーがタスク完了率の増加に従って長くなります。部分トリガーのpollコンポーネントと併用できます。
<af:progressIndicator
  [action]
  [actionListener]
  [value]
  [immediate="false"]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] />          
af:resetActionListener - ロールバックを実装するActionListenerです。ActionSourceを実装するコンポーネントに追加できます。アクションを実行する前に値をリセットする宣言方式です。
<af:resetActionListener />          
af:resetButton - ユーザーがクリックするとフォームがリセットされるボタンを作成します。
<af:resetButton
  [text="resetButton 1"]
  [accessKey]
  [disabled="false"]
  [partialTriggers]
  [textAndAccessKey]
  [Other General and Core attributes]
  [Event attributes] />          
af:returnActionListener - ActionSourceコンポーネントがダイアログまたはプロセス・ページから値を戻すための宣言方式です。
<af:returnActionListener
  [value]
 />          
af:selectBooleanCheckbox - ラベル、プロンプトおよびメッセージを備えた標準の入力チェックボックスを作成します。
<af:selectBooleanCheckbox
  [text="selectBooleanCheckbox 1"]
  [label="Label 1"]
  [requiredMessageDetail]
  [selected="false"]
  [validator]
  [value]
  [valueChangeListener]
  [tip]
  [accessKey]
  [autoSubmit="false"]
  [disabled="false"]
  [immediate="false"]
  [partialTriggers]
  [readOnly="false"]
  [required="false"]
  [simple="false"]
  [textAndAccessKey]
  [valign]
  [converter]
  [showRequired="false"]
  [messageDescUrl]
  [messageTargetFrame]
  [Other General and Core attributes]
  [Event attributes] />          
af:selectBooleanRadio - 標準的なラジオ・ボタンを作成します。このラジオ・ボタンは同じgroup属性値が設定された他のラジオ・ボタンとグループ化できます。
<af:selectBooleanRadio
  [text="selectBooleanRadio 1"]
  [group]
  [label="Label 1"]
  [requiredMessageDetail]
  [selected="false"]
  [validator]
  [value]
  [valueChangeListener]
  [tip]
  [accessKey]
  [autoSubmit="false"]
  [disabled="false"]
  [immediate="false"]
  [partialTriggers]
  [readOnly="false"]
  [required="false"]
  [simple="false"]
  [textAndAccessKey]
  [valign]
  [converter]
  [showRequired="false"]
  [messageDescUrl]
  [messageTargetFrame]
  [Other General and Core attributes]
  [Event attributes] />          
af:selectInputColor- 色を入力するテキスト入力フィールドと、2番目のダイアログのパレットから色を選択するボタンを作成します。インライン・パレットから色を選択するaf:chooseColorと、文字列値をJavaの色オブジェクトに変換するaf:convertColorも併用できます。
<af:selectInputColor
  [action]
  [actionListener]
  [columns]
  [label="Label 1"]
  [requiredMessageDetail]
  [returnListener]
  [validator]
  [value]
  [valueChangeListener]
[tip] [accessKey] [autoSubmit] [chooseId] [compact="false"] [disabled="false"] [immediate="false"] [labelAndAccessKey] [partialTriggers] [readOnly="false"] [required="false"] [simple="false"] [valign] [converter] [showRequired="false"] [messageDescUrl] [messageTargetFrame] [Other General and Core attributes] [Event attributes] />
af:selectInputDate - 日付を入力するためのテキスト入力フィールドを作成し、カレンダから日付を選択するためのボタンを作成します。日付を選択するaf:chooseDateと、文字列をJavaの日付オブジェクトに変換するaf:convertDateTimeも併用できます。
<af:selectInputDate
  [label="Label 1"]
  [action]
  [actionListener]
  [columns]
  [requiredMessageDetail]
  [returnListener]
  [validator]
  [value]
  [valueChangeListener]
  [tip]
  [accessKey]
  [autoSubmit]
  [chooseId]
  [disabled="false"]
  [immediate="false"]
  [labelAndAccessKey]
  [maximumLength]
  [partialTriggers]
  [readOnly="false"]
  [required="false"]
  [simple="false"]
  [valign]
  [converter]
  [showRequired="false"]
  [messageDescUrl]
  [messageTargetFrame]
  [Other General and Core attributes]
  [Event attributes] />          
af:selectInputText- フラッシュライトのクリックによって起動する2番目のウィンドウから値を選択して入力するための、テキスト入力フィールドとフラッシュライト・ボタンを作成します。
<af:selectInputText
  [label="Label 1"]
  [action]
  [actionListener]
  [columns="30"]
  [requiredMessageDetail]
  [returnListener]
  [validator]
  [value]
  [valueChangeListener]
  [tip]
  [accessKey]
  [autoSubmit="false"]
  [disabled="false"]
  [icon]
  [immediate="false"]
  [labelAndAccessKey]
  [maximumLength]
  [partialTriggers]
  [readOnly="false"]
  [required="false"]
  [searchDesc]
  [simple="false"]
  [valign]
  [windowHeight]
  [windowWidth]
  [converter]
  [showRequired="false"]
  [messageDescUrl]
  [messageTargetFrame]
  [Other General and Core attributes]
  [Event attributes] />          
af:selectItem - リスト・ボックス、ドロップダウン・リスト、シャトルおよび一連のラジオ・ボタンにあるような、一連の項目から選択できる単一の項目を作成します。
<af:selectItem
  [label="selectItem 1"]
  [disabled="false"]
  [value]
  [longDesc]
  [shortDesc]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] />          
af:selectManyCheckbox - 一連のチェックボックスからユーザーが複数の値を選択できるラベルとコンポーネントを作成します。
<af:selectManyCheckbox
  [label="Label 1"]
  [requiredMessageDetail]
  [validator]
  [value]
  [valueChangeListener]
  [tip]
  [valuePassThru="false"]
  [accessKey]
  [autoSubmit="false"]
  [disabled="false"]
  [immediate="false"]
  [labelAndAccessKey]
  [layout="vertical"]
  [partialTriggers]
  [readOnly="false"]
  [required="false"]
  [simple="false"]
  [valign]
  [converter]
  [showRequired="false"]
  [messageDescUrl]
  [messageTargetFrame]
 [Other General and Core attributes]
 [Event attributes] 

  <af:selectItem/>|<f:selectItem/>|<f:selectItems/>
  ...

/af:selectManyCheckbox>          
af:selectManyListbox - 一連の項目からユーザーが複数の項目を選択できるラベルとリスト・ボックスを作成します。この項目は、af:selectItemf:selectItemまたはf:selectItemsで表されます。
<af:selectManyListbox
  [label="Label 1"]
  [requiredMessageDetail]
  [size]
  [validator]
  [value]
  [valueChangeListener]
  [tip]
  [valuePassThru="false"]
  [accessKey]
  [autoSubmit="false"]
  [disabled="false"]
  [immediate="false"]
  [labelAndAccessKey]
  [partialTriggers]
  [readOnly="false"]
  [required="false"]
  [simple="false"]
  [valign]
  [converter]
  [showRequired="false"]
  [messageDescUrl]
  [messageTargetFrame]
  [Other General and Core attributes]
  [Event attributes] >

  <af:selectItem/>|<f:selectItem/>|<f:selectItems/>
  ...

</af:selectManyListbox>          
af:selectManyShuttle - 2つのリスト・コンテナ間でユーザーが複数の項目を選択および移動できるシャトル・コンポーネントを作成します。この項目は、af:selectItemf:selectItemまたはf:selectItemsで表されます。
<af:selectManyShuttle
  [leadingHeader]
  [requiredMessageDetail]
  [trailingHeader]
  [validator]
  [value]
  [valueChangeListener]
  [valuePassThru="false"]
  [disabled="false"]
  [immediate="false"]
  [leadingDescShown="false"]
  [partialTriggers]
  [readOnly="false"]
  [required="false"]
  [size]
  [trailingDescShown]
  [converter]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="filter"/>
  <f:facet name="trailingFooter"/>
  <f:facet name="leadingFooter"/>

  <af:selectItem/>|<f:selectItem/>|<f:selectItems/>
  ...

</af:selectManyShuttle>          
af:selectOneChoice - af:selectItemf:selectItemまたはf:selectItemsで表される項目のリストからユーザーが単一の項目を選択できるラベルとドロップダウン・リストを作成します。
<af:selectOneChoice
  [label="Label 1"]
  [requiredMessageDetail]
  [validator]
  [value]
  [valueChangeListener]
  [tip]
  [valuePassThru="false"]
  [accessKey]
  [autoSubmit="false"]
  [disabled="false"]
  [immediate="false"]
  [labelAndAccessKey]
  [partialTriggers]
  [readOnly="false"]
  [required="false"]
  [simple="false"]
  [unselectedLabel]
  [valign]
  [showRequired="false"]
  [messageDescUrl]
  [messageTargetFrame]
  [converter]

  [Other General and Core attributes]
  [Event attributes] >

  <af:selectItem/>|<f:selectItem/>|<f:selectItems/>
  ...

</af:selectOneChoice>          
af:selectOneListbox - af:selectItemf:selectItemまたはf:selectItemsで表される一連の項目からユーザーが単一の項目を選択できるラベルとリスト・ボックスを作成します。
<af:selectOneListbox
  [label="Label 1"]
  [requiredMessageDetail]
  [size]
  [validator]
  [value]
  [valueChangeListener]
  [tip]
  [valuePassThru="false"]
  [accessKey]
  [autoSubmit="false"]
  [disabled="false"]
  [immediate="false"]
  [labelAndAccessKey]
  [partialTriggers]
  [readOnly="false"]
  [required="false"]
  [simple="false"]
  [valign]
  [showRequired="false"]
  [messageDescUrl]
  [messageTargetFrame]
  [converter]

  [Other General and Core attributes]
  [Event attributes] >

  <af:selectItem/>|<f:selectItem/>|<f:selectItems/>
  ...

</af:selectOneListbox>          
af:selectOneRadio - ユーザーが単一の値を選択できるラベルと一連のラジオ・ボタンを作成します。このラジオ・ボタンはaf:selectItemf:selectItemまたはf:selectItemsで表されます。
<af:selectOneRadio
  [label="Label 1"]
  [requiredMessageDetail]
  [validator]
  [value]
  [valueChangeListener]
  [tip]
  [valuePassThru="false"]
  [accessKey]
  [autoSubmit="false"]
  [disabled="false"]
  [immediate="false"]
  [labelAndAccessKey]
  [layout="vertical"]
  [partialTriggers]
  [readOnly="false"]
  [required="false"]
  [simple="false"]
  [unselectedLabel]
  [valign]
  [converter]
  [showRequired="false"]
  [messageDescUrl]
  [messageTargetFrame]
  [Other General and Core attributes]
  [Event attributes] >

  <af:selectItem/>|<f:selectItem/>|<f:selectItems/>
  ...

</af:selectOneRadio>          
af:selectOrderShuttle - 2つのリスト・コンテナ間でユーザーが複数の項目を選択および移動し、選択した項目リストの順序を変更できるシャトル・コンポーネントを作成します。この項目はaf:selectItemf:selectItemまたはf:selectItemsで表されます。
<af:selectOrderShuttle
  [leadingHeader]
  [requiredMessageDetail]
  [trailingHeader]
  [validator]
  [value]
  [valueChangeListener]
  [valuePassThru="false"]
  [disabled="false"]
  [immediate="false"]
  [leadingDescShown="false"]
  [partialTriggers]
  [readOnly="false"]
  [reorderOnly="false"]
  [required="false"]
  [size]
  [trailingDescShown]
  [converter]

  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="filter"/>
  <f:facet name="trailingFooter"/>
  <f:facet name="leadingFooter"/>

  <af:selectItem/>|<f:selectItem/>|<f:selectItems/>
  ...

</af:selectOrderShuttle>          
af:selectRangeChoiceBar - ユーザーが、表示するレコードの範囲を多数のレコードから選択したり、前と次のリンクを使用するか、ドロップダウン・リストから範囲を選択して、レコード間を移動することができるコンポーネントを作成します。
<af:selectRangeChoiceBar
  [rangeChangeListener]
  [rows="25"]
  [value]
  [var]
  [first="0"]
  [immediate="false"]
  [partialTriggers]

  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="rangeLabel"/>

</af:selectRangeChoiceBar>          
af:setActionListener - ActionSourceインタフェースを実装するコンポーネントによる、ナビゲーション前の値の設定を許可するために使用します。
<af:setActionListener
  [from]*
  [to]* />          
af:showDetail - コンポーネントのグループをユーザーが非表示または表示できる非表示/表示アイコンとテキスト・リンクを作成します。
<af:showDetail
  [disclosed="false"]
  [disclosedText]
  [disclosureListener]
  [undisclosedText]
  [immediate="false"]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] />

  <f:facet name="prompt"/>

  <!-- components to hide and show -->

</af:showDetail>          
af:showDetailHeader - ヘッダーの下のコンテンツをユーザーが非表示または表示できる非表示/表示アイコンとヘッダーを作成します。
<af:showDetailHeader
  [text="showDetailHeader 1"]
  [disclosed="false"]
  [disclosureListener]
  [icon]
  [immediate="false"]
  [partialTriggers]
  [shortText]
  [size]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- content to hide and show -->

</af:showDetailHeader>          
af:showDetailItem - ShowOneコンポーネント(showOneChoiceshowOneTabなど)と併用し、子コンポーネントをグループ化して表示します。
<af:showDetailItem
  [text="showDetailItem 1"]
  [disclosed="false"]
  [disclosureListener]
  [accessKey]
  [disabled="false"]
  [immediate="false"]
  [partialTriggers]
  [textAndAccessKey]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- one or more child components to display -->

</af:showDetailItem>          
af:showOneChoice - showDetailItemコンポーネントで表された各項目を使用してドロップダウン・リスト・コンポーネントを作成するために使用します。このドロップダウン・リストでユーザーが1つの項目を選択すると、そのshowDetailItemコンポーネントの内容が表示されます。
<af:showOneChoice
  [id]
  [alignment="center"]
  [label="showOneChoice 1"]
  [position="start"]
  [accessKey]
  [partialTriggers]
  [labelAndAccessKey]
  [Other General and Core attributes]
  [Event attributes] >

  <af:showDetailItem/>
  <af:showDetailItem/>
  ...

</af:showOneChoice>          
af:showOnePanel - パネルにshowDetailItemコンポーネントのコンテンツを表示するために使用します。
<af:showOnePanel
  [id]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <af:showDetailItem/>
  <af:showDetailItem/>
  ...

</af:showOnePanel>          
af:showOneRadio - showDetailItemコンポーネントで表された一連のラジオ・ボタンをレイアウトするために使用します。このパネルでユーザーが1つのボタンを選択すると、そのshowDetailItemの内容が表示されます。
<af:showOneRadio
  [id]
  [alignment="center"]
  [label="showOneRadio 1"]
  [position="start"]
  [accessKey]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <af:showDetailItem/>
  <af:showDetailItem/>
  ...

</af:showOneRadio>          
af:showOneTab - showDetailItemコンポーネントで表された一連の参照可能タブをレイアウトするために使用します。このパネルでユーザーが1つのタブを選択すると、そのshowDetailItemの内容が表示されます。
<af:showOneTab
  [id]
  [position="both"]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <af:showDetailItem/>
  <af:showDetailItem/>
  ...

</af:showOneTab>          
af:singleStepButtonBar - 現在のステップおよびプロセスの最大ステップ番号をユーザーに示し、前または次のステップに切り替えるボタンを使用してユーザーがステップ内を移動できるコンポーネントを作成します。
<af:singleStepButtonBar
  [selectedStep="1"]
  [maxStep="-1"]
  [nextAction]
  [nextActionListener]
  [previousAction]
  [previousActionListener]
  [partialTriggers]
  [text="Step"]
  [Other General and Core attributes]
  [Event attributes] />          
af:subform - 複数のフォームを使用せず、単独で検証または処理できる領域をページ内に作成するために使用します。
<af:subform
  [default="false"]
  [binding]
  [id]
  [rendered="true"] />          
af:switcher - レンダリングする必要があるファセット・コンポーネントを動的に判断するために使用します。
<af:switcher
  [facetName]
  [defaultFacet]
  [binding]
  [id]
  [rendered="true"] >

  <f:facet />
  <f:facet />
  ...

</af:switcher>          
af:table - 表データを表示するために使用します。表データは、操作用にソートして選択し、表示やナビゲーション用に複数の範囲に分割できます。また、行に関するその他の詳細を表示/非表示にするために構成できます。
<af:table
  [disclosureListener]
  [disclosureAllListener]
  [emptyText="No items were found"]
  [rangeChangeListener]
  [rows="25"]
  [selectionListener]
  [selectionState]
  [sortListener]
  [summary]
  [value]
  [var]
  [varStatus]
  [allDetailsEnabled="false"]
  [banding="none"]
  [bandingInterval="1"]
  [first="0"]
  [immediate="false"]
  [partialTriggers]
  [width]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="actions"/>
  <f:facet name="detailStamp"/>
  <f:facet name="selection"/>
  <f:facet name="header"/>
  <f:facet name="footer"/>

  <af:column/>
  <af:column/>
  ...

</af:table>          
af:tableSelectMany - tableまたはtreeTableコンポーネントのselectionファセットで使用し、tableまたはtreeTableで複数の行を選択可能にします。
<af:tableSelectMany
  [text="Select items and..."]
  [disabled]
  [autoSubmit="false"]
  [required="false"]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- ActionSource component -->
  ...

</af:tableSelectMany>          
af:tableSelectOne - tableまたはtreeTableコンポーネントのselectionファセットで使用し、tableまたはtreeTableで単一の行を選択可能にします。
<af:tableSelectOne
  [text="Select and ..."]
  [disabled]
  [autoSubmit="false"]
  [required="false"]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- ActionSource component -->
  ...

</af:tableSelectOne>          
af:tree - 階層形式で構造化されたデータを表示するために使用します。
<af:tree
  [value]
  [var]
  [varStatus]
  [disclosureListener]
  [focusRowKey]
  [treeState]
  [immediate="false"]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet="nodeStamp"/>

</af:tree>          
af:treeTable - 階層形式で構造化されたデータを表コンポーネントと同様の形式で表示するために使用します。
<af:treeTable
  [banding="none"]
  [bandingInterval="1"]
  [disclosureListener]
  [disclosureAllListener]
  [emptyText="No items were found"]
  [expandAllEnabled="true"]
  [focusListener]
  [focusRowKey]
  [rangeChangeListener]
  [rowsByDepth]
  [selectionListener]
  [summary]
  [treeState]
  [immediate="false"]
  [partialTriggers]
  [value]
  [var]
  [varStatus]
  [width]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name="actions"/>
  <f:facet name="nodeStamp"/>
  <f:facet name="pathStamp"/>
  <f:facet name="header"/>
  <f:facet name="footer"/>
  <f:facet name="selection"/>

  <af:column/>
  <af:column/>
  ...

</af:treeTable>          
af:validateByteLength - 有効なJavaエンコーディングが使用されているときに、文字列のバイト長を検証するために使用します。
<af:validateByteLength
  [encoding="iso-8859-1"]*
  [maximum]*
  [maximumMessageDetail] />          
af:validateDateTimeRange - 入力された日付が指定範囲内にあるかどうかを検証するために使用します。
<af:validateDateTimeRange
  [maximum]
  [maximumMessageDetail]
  [minimum]
  [minimumMessageDetail]
  [notInRangeMessageDetail] />          
af:validateRegExp - Javaの正規表現構文を使用する式を検証するために使用します。
<af:validateRegExp
  [pattern]*
  [noMatchMessageDetail] />          
af:validator - Validatorインスタンスを親コンポーネントに追加するために使用します。
<af:validator
  [binding]* | [validatorId]* />          

ADF Faces HTMLライブラリ

コンポーネント・タグ 構文
afh:body - これは、標準HTMLのbody要素に対するタグですが、部分ページ・レンダリング(PPR)および初期ページ・フォーカスをサポートします。
<afh:body
  [firstClickPassed="false"]
  [initialFocusId]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- body contents -->

</afh:body>          
afh:cellFormat - 追加の書式設定をrowLayoutのセルに適用するために使用します。
<afh:cellFormat
  [columnSpan]
  [halign]
  [header="false"]
  [headers]
  [height]
  [partialTriggers]
  [rowSpan]
  [shortText]
  [valign]
  [width]
  [wrappingsDisabled="false"]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- cell contents -->

</afh:cellFormat>          
afh:frame - HTMLフレームで必要な属性を指定するためにframeBorderLayoutファセットで使用します。
<afh:frame
  [source]
  [height]
  [name]
  [scrolling="auto"]
  [width]
  [longDescURL]
  [marginHeight]
  [marginWidth]
  [partialTriggers]

  [Other General and Core attributes]
  [Event attributes] />          
afh:frameBorderLayout - left、right、top、bottomなどのファセットを使用して、フレームを事前に定義された位置に配置する際に使用します。
<afh:frameBorderLayout
  [height]
  [width]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] >

  <f:facet name"alternateContent"/>
  <f:facet name"bottom"/>
  <f:facet name"center"/>
  <f:facet name"end"/>
  <f:facet name"innerEnd"/>
  <f:facet name"innerLeft"/>
  <f:facet name"innerRight"/>
  <f:facet name"innerStart"/>
  <f:facet name"left"/>
  <f:facet name"right"/>
  <f:facet name"start"/>
  <f:facet name"top"/>

</afh:frameBorderLayout>          
afh:head - HTMLページの<head>要素を生成します。
<afh:head
  [title]
  [partialTriggers]
  [binding]
  [id]
  [rendered="default"] />          
afh:html - HTMLページの<html>要素を生成します。
<afh:html
  [binding]
  [id]
  [rendered="true"] />          
afh:rowLayout - tableLayoutの行を定義するために使用します。単独でも使用できます。
<afh:rowLayout
  [halign]
  [partialTriggers]
  [valign]
  [width]
  [Other General and Core attributes]
  [Event attributes] >

  <!-- row contents -->

</afh:rowLayout>          
afh:script - ライブラリおよびインライン・スクリプトをインポートするために使用します。
<afh:script
  [source]
  [text]
  [generatesContent="false"]
  [partialTriggers]
  [Other General and Core attributes]
  [Event attributes] />          
afh:styleSheet - 生成したADF Facesスタイルシートにスタイルシート・リンク参照を挿入する際に使用します。
<afh:styleSheet
  [binding]
  [id]
  [rendered="default"] />          
afh:tableLayout - HTMLの<table>要素を囲むThinラッパー。一連のrowLayout要素が含まれます。
<afh:tableLayout
  [borderWidth]
  [cellPadding]
  [cellSpacing]
  [halign]
  [partialTriggers]
  [summary]
  [width]
  [Other General and Core attributes]
  [Event attributes] >

  <afh:rowLayout>
  ...

</afh:tableLayout>          

属性カテゴリ

属性のカテゴリの詳細は、「ADF Facesコンポーネント・タグ属性の概要」を参照してください。

一般属性とCore属性

ほとんどのADF Facesの標準コンポーネント・タグでは、次の一般属性とCore属性がサポートされています。

DHTMLのイベント属性

ほとんどのADF Facesの標準コンポーネント・タグでは、次のDHTMLイベント属性がサポートされています。

onbluronchangeonclickondblclickonfocusonkeydownonkeypressonkeyuponloadonmousedownonmousemoveonmouseoutonmouseoveronmouseuponselectonunload


JSF HTMLタグにかわるADF Facesタグについて
ADF UIXとADF Faces間のコンポーネントの変更について

ADF Facesコンポーネントの使用

ADF Facesコンポーネントの詳細は、Javadocsも参照してください。