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

E81455-02

<af:passThroughAttribute>

passThroughAttribute passthroughattribute


The passThroughAttribute allows to add an attribute to the passThroughAttributes Map of the parent UIComponent. These attributes will appear on the outer most markup element in the rendered markup for the component.

This example shows a inputText component on which a custom attribute 'author' is added using af:passThroughAttribute tag.


  <af:inputText columns="150" id="text1" value="#{....}">
    <af:passThroughAttribute name="author" value="Mark Twain"/>
  </af:inputText>

Attributes

Name Type Supports EL? Description
The name of the pass through attribute. If the name of this attribute conflicts with Renderer specific attribute, the value specified here supercedes the one that would otherwise be rendered by the Renderer. Value of the passthrough attribute. Can be a string or an EL.