<selectionKey>要素
ネームスペース:  http://xmlns.oracle.com/uix/bc4j
派生元:  <bc4j:binding>要素
グループ:  UIX BC4J
要素の型: 

<selectionKey>要素は、現在の選択の子キーの中で指定されたイベント・パラメータ値で識別されるものから作成されたBC4Jキーを返します。

構文
<selectionKey
      key="string"
      name="string"
>
</selectionKey>

注意: 
  • この要素は派生元要素のすべての属性と子要素を持つことができます。

  • 説明

    <selectionKey>要素は、現在の選択の子キーの中で指定されたイベント・パラメータ値で識別されるものから作成されたBC4Jキーを返します。


    次の例では、empsという名の(選択機能をサポートした)コンポーネントの現在の選択におけるkeyという子キーを使用して、CurrentDeptEmpsVOというビュー・オブジェクトの行を位置付けます。

                <ctrl:handlers>
                  <ctrl:event name="..." >
                    <bc4j:findRootAppModule name="EmpAppModule" >
                      <bc4j:findViewObject name="CurrentDeptEmpsVO" >
                        <bc4j:findRowByKey>
                          <bc4j:keyBinding>
                            <bc4j:selectionKey name="emps" key="key" />
                          </bc4j:keyBinding>
                          <bc4j:handlers>
                            <-- child event handlers. -->
                            ...
                          </bc4j:handlers>
                        </bc4j:findRow>
                      </bc4j:findViewObject>
                    </bc4j:findRootAppModule>
                  </ctrl:event>
                </ctrl:handlers>

    属性

    説明
    key BC4Jキーを含むUIX Componentsの名前。 必須。
    string
    name 選択機能をサポートするUIX Componentsの名前。 必須。
    string