Creating a Button

To create a button:

  1. In the UIX Visual Editor or Design Structure Window of the desired file, locate the component or node in which you wish to insert a button.
  2. In the Component Palette, select Navigation Components from the dropdown list, and then drag and drop the button component from the list to the parent node.
  3. In the Property Inspector, set the following attributes for the new button:

Note: To use data binding, see Data Binding a Component Attribute.

Example (UIX XML)


...
<button text="Client action enabled button">
  <primaryClientAction>
    <!-- client actions here -->
    <firePartialAction event="anyEvent"
                       formSubmitted="true"
                       targets="someTargetId">
      <parameters>
        <parameter key="keyone" value="keyvalue1"/>
        <parameter key="keytwo" value="keyvalue2"/>
      </parameters>
    </firePartialAction>
  </primaryClientAction>
</button>
...    

About Button
About Client Actions

Working with Navigation Components

 

Copyright © 1997, 2004, Oracle. All rights reserved.