Summary
Tag name:
<
af:showOnePanel
>
UIComponent class:
oracle.adf.view.faces.component.core.layout.CoreShowOnePanel
Component type:
oracle.adf.CoreShowOnePanel
The showOnePanel control can be used to display a group of contents belonging to a showDetailItem.
Panel bar(s) with panels representing showDetailItem children is displayed.
The panel for the showDetailItem that is selected to be shown is shown as expanded and contents of
selected showDetailItem is displayed. If none of the showDetailItem children are selected, the first showDetailItem
that is enabled is considered to be selected.
Example:
The following is an example of showOnePanel.
<af:showOnePanel>
<af:showDetailItem text="ADF Faces Components">
<af:panelHeader text="ADF Faces Components First Child"/>
<af:panelHeader text="ADF Faces Components Second Child"/>
</af:showDetailItem>
<af:showDetailItem text="Architecture" disabled="true">
<af:panelHeader text="Architecture First Child"/>
<af:panelHeader text="Architecture Second Child"/>
</af:showDetailItem>
<af:showDetailItem text="Release">
<af:panelHeader text="Release First Child"/>
<af:panelHeader text="Release Second Child"/>
</af:showDetailItem>
</af:showOnePanel>
Attributes
Ungrouped attributes
|
Name
|
Type
|
Supports EL?
|
Description
|
|
attributeChangeListener
|
javax.faces.el.MethodBinding
|
Only
EL
|
a method reference to an attribute change listener
|
|
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.
|
Core attributes
|
Name
|
Type
|
Supports EL?
|
Description
|
|
binding
|
oracle.adf.view.faces.component.
core.layout.CoreShowOnePanel
|
Only EL
|
a binding reference to store the component instance
|
|
id
|
String
|
No
|
the 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
|
|
onclick
|
String
|
Yes
|
an onclick Javascript handler.
|
|
ondblclick
|
String
|
Yes
|
an ondblclick Javascript handler.
|
|
onkeydown
|
String
|
Yes
|
an onkeydown Javascript handler.
|
|
onkeypress
|
String
|
Yes
|
an onkeypress Javascript handler.
|
|
onkeyup
|
String
|
Yes
|
an onkeyup Javascript handler.
|
|
onmousedown
|
String
|
Yes
|
an onmousedown Javascript handler.
|
|
onmousemove
|
String
|
Yes
|
an onmousemove Javascript handler.
|
|
onmouseout
|
String
|
Yes
|
an onmouseout Javascript handler.
|
|
onmouseover
|
String
|
Yes
|
an onmouseover Javascript handler.
|
|
onmouseup
|
String
|
Yes
|
an onmouseup Javascript handler.
|