Oracle Fusion Middleware Tag Reference for Oracle ADF Faces 12c (12.2.1.3) E80089-01 |
af:gridRow gridRow grid row
UIComponent class: oracle.adf.view.rich.component.rich.layout.RichGridRow
Component type: oracle.adf.RichGridRow
The gridRow control is a layout element that arranges gridCell children for a parent panelGridLayout component.
You may also alternatively place a facetRef, iterator, or switcher inside of the gridRow and their resolved children will be treated as if they were direct children of the gridRow--those children must resolve to gridCell components.
<af:panelGridLayout id="grid"> <af:gridRow id="row" height="auto" marginTop="4px" marginBottom="4px"> <af:gridCell id="logoCell" width="auto" valign="middle" marginStart="4px"> <af:link id="logoLnk" action="index" shortDesc="Logo" styleClass="AFBrandingBarLogo"/> </af:gridCell> <af:gridCell id="flexibleSpace" width="100%"/> <af:gridCell id="searchCell" width="auto" valign="middle" marginEnd="4px"> <af:inputText id="search" label="Search" contentStyle="width:10em"/> </af:gridCell> <af:gridCell id="statusCell" width="auto" valign="middle" marginEnd="4px"> <af:statusIndicator id="status"/> </af:gridCell> </af:gridRow> </af:panelGridLayout>
Type | Phases | Description |
---|---|---|
org.apache.myfaces.trinidad.event.AttributeChangeEvent | Invoke Application, Apply Request Values |
Event delivered to describe an attribute change. Attribute change events are not delivered for any programmatic change to a property. They are only delivered when a renderer changes a property without the application's specific request. An example of an attribute change event might include the width of a column that supported client-side resizing. |
Name | Type | Supports EL? | Description |
---|---|---|---|
attributeChangeListener | javax.el.MethodExpression | Only EL | a method reference to an attribute change listener. Attribute change events are not delivered for any programmatic change to a property. They are only delivered when a renderer changes a property without the application's specific request. An example of an attribute change events might include the width of a column that supported client-side resizing. |
binding | oracle.adf.view.rich.component.rich.layout.RichGridRow | Only EL | an EL reference that will store the component instance on a bean. This can be used to give programmatic access to a component from a backing bean, or to move creation of the component to a backing bean. |
height | String | Yes | Default Value: auto Specifies the height of the row:
|
id | String | No | the identifier for the component. Every component may be named by a component identifier that must conform to the following rules:
|
marginBottom | String | Yes | Default Value: 0px Specifies a candidate for the amount of space that will be added below this row. The next row could provide a candidate via its marginTop value. Only fixed dimension units are supported, e.g. "px", "em", "pt" (not "auto" nor "%"). The margin candidates will be resolved using the largest value of the first unit type encountered (conflicting unit types will be ignored). |
marginTop | String | Yes | Default Value: 0px Specifies a candidate for the amount of space that will be added above this row. The previous row could provide a candidate via its marginBottom value. Only fixed dimension units are supported, e.g. "px", "em", "pt" (not "auto" nor "%"). The margin candidates will be resolved using the largest value of the first unit type encountered (conflicting unit types will be ignored). |
rendered | boolean | Yes | Default Value: true whether the component is rendered. When set to false, no output will be delivered for this component (the component will not in any way be rendered, and cannot be made visible on the client). If you want to change a component's rendered attribute from false to true using PPR, set the partialTrigger attribute of its parent component so the parent refreshes and in turn will render this component. |