<attrProperty>要素
ネームスペース: http://xmlns.oracle.com/uix/bc4j
派生元: <ui:boundValue>要素
グループ: UIX Components
要素の型: BoundValue

<attrProperty>要素は、現在スコープ内にある属性のプロパティにアクセスするBoundValueです。

構文
<attrProperty
      name="string"
>
</attrProperty>

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

  • 説明

    <attrProperty>要素は、現在スコープ内にある属性のプロパティにアクセスするBoundValueです。


    次の例では、Empnoという属性を更新できない場合、Edit Employeeというボタンを使用不可の状態で表示します。

                <bc4j:rootAppModuleScope name="EmpAppModule" >
                 <contents>
                  <bc4j:viewObjectScope name="AllEmpsVO" >
                   <contents>
                    <bc4j:attrScope name="Empno" >
                     <contents>
                      <button text="Edit Employee">
                       <boundAttribute name="disabled">
                        <not>
                         <bc4j:attrProperty name="updateable" />
                        </not>
                       </boundAttribute>
                      </button>
                     </contents>
                    </bc4j:attrScope>
                   </contents>
                  </bc4j:viewObjectScope>
                 </contents>
                </bc4j:rootAppModuleScope>

    属性

    説明
    name プロパティ名。  必須。
    string