Summary
Tag name:
<
afh:frameBorderLayout
>
UIComponent class:
oracle.adf.view.faces.component.html.HtmlFrameBorderLayout
Component type:
oracle.adf.HtmlFrameBorderLayout
frameBorderLayout is a layout bean which can be used to place seven
frames at left, right, top, bottom, innerLeft, innerRight and center
positions. It does not render any children except for the specified
facets which must all be either frames or
frameBorderLayouts. The user may use either left/right or
start/end as facets, but not both. Left/right takes
precedence over start/end.
On mobile devices a list linking to each frame is rendered.
Example:
<afh:frameBorderLayout>
<f:facet name="Lleft">
<afh:frame source="frame_leftTest.jspx" name="left" width="30%" />
</f:facet>
<f:facet name="center">
<afh:frame source="frame_centerTest.jspx" name="contents" />
</f:facet>
</afh:frameBorderLayout>
Supported Facets
|
Name
|
Description
|
|
alternateContent
|
These contents will be rendered inside HTML
NOFRAMES
tags. Browsers that do not
support frames will render these contents.
|
|
bottom
|
The frame to be rendered below the center frame.
This frame's height attribute is used to allocate
its height.
|
|
center
|
The frame to be rendered in the center.
|
|
end
|
The frame to
be rendered to the right of the center frame,
if the
reading direction is left-to-right, or left otherwise.
This frame's width attribute is used to allocate
its width.
|
|
innerEnd
|
The frame to be rendered as the innerRight frame,
if the reading direction is left-to-right,
or innerLeft frame otherwise.
This frame's width attribute is used to allocate
its width.
|
|
innerLeft
|
The frame to be rendered between the left frame and
the center frame.
This frame's width attribute is used to allocate
its width.
|
|
innerRight
|
The frame to be rendered between the right frame and
the center frame.
This frame's width attribute is used to allocate
its width.
|
|
innerStart
|
The frame to be rendered as the innerLeft frame,
if the reading direction is left-to-right,
or innerRight frame otherwise.
This frame's width attribute is used to allocate
its width.
|
|
left
|
The frame to be rendered to the left of the center frame.
This frame's width attribute is used to allocate
its width.
|
|
right
|
The frame to be rendered to the right of the center frame.
This frame's width attribute is used to allocate
its width.
|
|
start
|
The frame to be rendered to the left of the center frame,
if the
reading direction is left-to-right, or right otherwise.
This frame's wid
th attribute is used to allocate
its width.
|
|
top
|
The frame to be rendered above the center frame.
This frame's height attribute is used to allocate
its height.
|
Attributes
Ungrouped attributes
|
Name
|
Type
|
Supports EL?
|
Description
|
|
attributeChangeListener
|
javax.faces.el.MethodBinding
|
Only EL
|
a method reference to an attribute change listener
|
|
height
|
String
|
Yes
|
The proposed height of this frameBorderLayout. This can be in
pixels or percentage. This attribute is used only if this a nested
frameBorderLayout in a top/bottom facet of a
frameBorderLayout.
|
|
partialTriggers
|
String[
]
|
Yes
|
the IDs of the components that should trigger a partial update.
This component will listen on the trigger components. If one of the
trigger components receives an event that will cause it to update
in some way, this component will request to be updated too.
|
|
width
|
String
|
Yes
|
The proposed width of this frameBorderLayout. This can be in
pixels or percentage. This attribute is used only if this a nested
frameBorderLayout in a left/right facet of a
frameBorderLayout.
|
Core attributes
|
Name
|
Type
|
Supports EL?
|
Description
|
|
binding
|
oracle.adf.view.faces.component.
html.HtmlFrameBorderLayout
|
Only EL
|
a binding reference to store the component instance
|
|
id
|
String
|
No
|
th
e identifier for the component. This must be a valid XML ID,
and therefore may not contain whitespace or start with a number. Also,
JSF requires that IDs must not contain any colons (":").
|
|
inlineStyle
|
String
|
Yes
|
the inline CSS style for this element
|
|
rendered
|
boolean
|
Yes
|
whether the bean is rendered. When set to false,
no output will be delivered for this bean.
|
|
shortDesc
|
String
|
Yes
|
the short description of the bean. This text
is commonly used by user agents to display tooltip help text.
|
|
styleClass
|
String
|
Yes
|
the CSS style class of the bean.
|
Javascript attributes
|
Name
|
Type
|
Supports EL?
|
Description
|
|
onload
|
String
|
Yes
|
an onload Javascript handler.
|
|
onunload
|
String
|
Yes
|
an onunload Javascript handler.
|