Oracle Fusion Middleware Tag Reference for Oracle ADF Faces
12c (12.2.1.3)

E80089-01

<af:setPropertyListener>

setPropertyListener setpropertylistenersetproperty


The setPropertyListener tag provides a declarative syntax for assigning values when an event fires. The setPropertyListener implements the listener interface for a variety of events, to indicate which event type it should listen for set the 'type' attribute.

</section> <section name="Code_Example_s_">

This example shows a table with a "Show..." button. When the button is pressed, the following will happen:

  1. The value of "#{row}" will be retrieved - which corresponds to the current row in the table.
  2. That object will get stored as the "detail" property in process scope.
  3. The user will navigate to the "showDetail" outcome of this page (because of the "action" property on the <h:commandButton>).
The target page can then retrieve the detail object from the process scope and use it as needed.

  <h:dataTable var="row" value="#{....}">
    ...
    <h:column>
      <h:commandButton value="Show..." action="showDetail" ..>
        <af:setPropertyListener from="#{row}"
                              to="#{pageFlowScope.detail}"
                              type="action"/>
      </h:commandButton>
    </h:column>
  </h:dataTable>

Attributes


 
Name Type Supports EL? Description
the source of the value; can be an EL expression or a constant value
the target for the value; must be an EL expression
the event type to listen for. The legal values are: action, calendar, calendarActivity, calendarActivityDurationChange, calendarDisplayChange, contextInfo, dialog, disclosure, focus, item, launch, launchPopup, poll, popupFetch, query, queryOperation, rangeChange, regionNavigation, return, returnPopupData, returnPopup, rowDisclosure, selection, sort, springboardChange, and valueChange.