Summary

Tag Name: <af:deck>
Java Class: oracle.adf.view.rich.component.rich.layout.RichDeck
Component Type: oracle.adf.RichDeck
The deck component is a container that shows one child component at a time. When changing which child is displayed, the transition can be animated.

This component does not provide any built-in controls for choosing which child is displayed. Instead, you use some other component to control it. For example, you might use an external navigationPane tab bar or perhaps some external commandImageLinks to represent page progress dots. You are not limited to external controls, your deck might be displaying a series of images and you may want to put a link around each image to trigger advancing to the next image. In all of these cases, you will need to use an event handler function to change the displayed child.

This example shows how to dynamically find the nearest deck ancestor, assign a new displayedChild value, and then trigger the transition animation:

// Action listener for navigating to the 1st card of a deck.
public void animateToFirstCard(ActionEvent e)
{
  UIComponent eventComponent = e.getComponent();
  _animateDeckDisplayedChild(eventComponent, 0);
}

// Action listener for navigating to the 2nd card of a deck.
public void animateToSecondCard(ActionEvent e)
{
  UIComponent eventComponent = e.getComponent();
  _animateDeckDisplayedChild(eventComponent, 1);
}

// Animate the display of a deck child.
private void _animateDeckDisplayedChild(
  UIComponent eventComponent,
  int newDisplayedChildIndex)
{
  // Find the nearest deck ancestor:
  RichDeck deck = null;
  String eventComponentId = eventComponent.getId();
  while (deck == null)
  {
    if (eventComponent == null)
    {
      System.err.println("Unable to locate a deck ancestor from id " + eventComponentId);
      return;
    }
    else if (eventComponent instanceof RichDeck)
    {
      deck = (RichDeck)eventComponent;
      break;
    }
    eventComponent = eventComponent.getParent();
  }

  String newDisplayedChild = deck.getChildren().get(newDisplayedChildIndex).getId();

  // Update the displayedChild:
  deck.setDisplayedChild(newDisplayedChild);

  // Add this component as a partial target:
  RequestContext rc = RequestContext.getCurrentInstance();
  rc.addPartialTarget(deck);
}
        
In order to choose what the transition will look like when changing the deck's displayedChild, place one or two af:transition tags inside of the af:deck tag. This tag will let you choose an animation style and what kind of transition will trigger that type of animation. In order for a transition to take effect, the deck must be redrawn but not some ancestor of the deck because if an ancestor is redrawn the old state for the deck will be lost (nothing to transition from).

Many of the transition animations will give a different effect based on the width and height of the deck component. In most cases, you will either want to explicitly assign a width and height inlineStyle to constrain the dimensions of the deck or place the deck in a container that provides dimensions. For example, if the deck were displaying one playing card at a time, you would want your deck's dimensions to match the dimensions of the playing card. If you allowed the deck to display using the full width of the page, a horizontal flip transition will look funny because the axis of the flip will be the middle of the deck, not the middle of the playing card.

Some of the transition animations can cause content to bleed outside of the deck's dimensions during the transition animation. If this effect is undesirable for your use case, you can add an "overflow:hidden" inlineStyle. When using this style, make sure your deck is constrained to a width and height (or is being stretched by an ancestor component) or else the user won't be able to see it because the deck will display with a zero pixel height.

Transition Trigger Types

  • backNavigate - Transitioning from a later child to an earlier child (in terms of sibling order)
  • forwardNavigate - Transitioning from an earlier child to a later child (in terms of sibling order)
  • replace - Transitioning a component that is being refreshed through partial page refresh(PPR)
Transition Animations
  • none - No animation between items; the default and also the type used if another specified animation type is not supported on a platform
  • fade - A gradual opacity change between the items (see note 1)
  • flipUp - imagine the 2 items sandwiched, the bottom of the sandwich moves toward the user and continues upward until the sandwich is flipped a full 180 degrees (see note 2)
  • flipDown - imagine the 2 items sandwiched, the top of the sandwich moves toward the user and continues downward until the sandwich is flipped a full 180 degrees (see note 2)
  • flipStart - imagine the 2 items sandwiched, the end of the sandwich moves toward the user and continues in the start direction until the sandwich is flipped a full 180 degrees (see note 2)
  • flipEnd - imagine the 2 items sandwiched, the start of the sandwich moves toward the user and continues in the end direction until the sandwich is flipped a full 180 degrees (see note 2)
  • flipLeft - imagine the 2 items sandwiched, the right of the sandwich moves toward the user and continues in the left direction until the sandwich is flipped a full 180 degrees (see note 2)
  • flipRight - imagine the 2 items sandwiched, the left of the sandwich moves toward the user and continues in the right direction until the sandwich is flipped a full 180 degrees (see note 2)
  • slideUp - imagine the 2 items stacked vertically, they both move up (see note 1)
  • slideDown - imagine the 2 items stacked vertically, they both move down (see note 1)
  • slideStart - imagine the 2 items stacked horizontally, they both move in the start direction (see note 1)
  • slideEnd - imagine the 2 items stacked horizontally, they both move in the end direction (see note 1)
  • slideLeft - imagine the 2 items stacked horizontally, they both move in the left direction (see note 1)
  • slideRight - imagine the 2 items stacked horizontally, they both move in the right direction (see note 1)
Note, these transition animations will not work in all browsers. They require whichever is newer, the minimum browser requirements specified in the release notes or the following:
  1. = Chrome 14, Firefox 16, IE 10, or Safari 5.1
  2. = Chrome 14, Firefox 19, IE 10, or Safari 5.1
When using an animation, you will not see components that use programmatic geometry management appear in their final state until after the animation is complete. This effect may be more pronounced depending on the complexity of your component struture so you may need to evaluate whether an animation is appropriate.

Note about stretching layouts and flowing/scrolling layouts:

With today's web browsers, it is not reliable to have vertically-stretched content inside of areas that also have scroll bars. If you want the outer areas of your page structure to stretch, you need to be careful of how you assemble your component tree.

  • First, build up a structure of stretchable components (using panelSplitters or panelGridLayouts).
  • Second, inside of this structure, create islands of non-stretched content.
Rules of thumb:
  1. Never nest one scrolling container inside of another scrolling container since users do not like nested scroll bars.
  2. Never specify percentage heights in any component's inlineStyle attribute.
  3. Never use the "position" style in any component's inlineStyle attribute.
If you believe that you need to break one of these rules, this is an indication that your page structure is not following the page structure guidelines and you will likely have troubles getting your application to render consistently across various web browsers and computing platforms.
  • For specific details about component stretching, please see the "geometry management" section in the tag documentation of each component.
  • See the demo application for real world layout examples that you can use as a starting point in your application. A good starting point is the "Layout Basics" page listed under the "Framework Features" tab of the demo application.

You may also alternatively place a facetRef or switcher inside of the deck and their resolved children will be treated as if they were direct children of the deck (you cannot use an af:iterator at this time because you would not be able to specify which of the stamped children you want to show via the displayedChild attribute).

Geometry Management

  • This component can be stretched by a parent layout component that stretches its children, e.g. panelSplitter.
  • This component will stretch the displayed child component if the deck is also being stretched. If you don't want a child to be stretched in such scenarios, you will need to surround it with a panelGroupLayout layout="scroll".

Screenshot(s)

deck screenshot
The deck component is a container that shows one child component at a time. When changing which child is displayed, the transistion can be animated.

Code Example(s)

<af:deck id="d1">
  <af:transition triggerType="backNavigate" transition="flipEnd"/>
  <af:transition triggerType="forwardNavigate" transition="flipStart"/>
  <af:panelGroupLayout id="pgl1" layout="scroll">
    <af:outputText id="ot1" value="Card 1"/>
  </af:panelGroupLayout>
  <af:panelGroupLayout id="pgl2" layout="scroll">
    <af:outputText id="ot2" value="Card 2"/>
  </af:panelGroupLayout>
</af:deck>

Supported Client Events for Client Behaviors

  • click
  • contextMenu
  • dblClick
  • mouseDown
  • mouseMove
  • mouseOut
  • mouseOver
  • mouseUp
  • propertyChange (default)

Events

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.

Attributes

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.RichDeck 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.
clientComponent boolean Yes Default Value: false

whether a client-side component will be generated. A component may be generated whether or not this flag is set, but if client Javascript requires the component object, this must be set to true to guarantee the component's presence. Client component objects that are generated today by default may not be present in the future; setting this flag is the only way to guarantee a component's presence, and clients cannot rely on implicit behavior. However, there is a performance cost to setting this flag, so clients should avoid turning on client components unless absolutely necessary.
customizationId String Yes This attribute is deprecated. This attribute will be removed in the next release. Use the 'id' attribute instead.

This attribute is deprecated. The 'id' attribute should be used when applying persistent customizations. This attribute will be removed in the next release.
dimensionsFrom String Yes Valid Values: auto, children, parent
Default Value: auto

determines how the component will handle geometry management. This specifies where the dimensions of the root element of the deck will come from:

  • auto (the default) - either "children" or "parent", depending on the container the deck is inside; if the deck is being stretched by its ancestor then "parent" will be used, otherwise "children" will be used.
  • children - the deck will get its dimensions from the displayed child. This mode may degrade some animation effects.
  • parent - the deck will get its dimensions from the inlineStyle and if not provided from there then from its parent or if not provided from the parent then from the some default size.
displayedChild String Yes Default Value:

indicates the id of the child component that is currently displayed; if not provided or if no match is found, no child will be displayed. Iterated children are not supported at this time.
id String No the identifier for the component. Every component may be named by a component identifier that must conform to the following rules:
  • They must start with a letter (as defined by the Character.isLetter() method) or underscore ( _ ).
  • Subsequent characters must be letters (as defined by the Character.isLetter() method), digits as defined by the Character.isDigit() method, dashes ( - ), or underscores ( _ ). To minimize the size of responses generated by JavaServer Faces, it is recommended that component identifiers be as short as possible. If a component has been given an identifier, it must be unique in the namespace of the closest ancestor to that component that is a NamingContainer (if any).
inlineStyle String Yes the CSS styles to use for this component. This is intended for basic style changes. The inlineStyle is a set of CSS styles that are applied to the root DOM element of the component. Be aware that because of browser CSS precedence rules, CSS rendered on a DOM element takes precedence over external stylesheets like the skin file. Therefore skins will not be able to override what you set on this attribute. If the inlineStyle's CSS properties do not affect the DOM element you want affected, then you will have to create a skin and use the skinning keys which are meant to target particular DOM elements, like ::label or ::icon-style.
landmark String Yes Valid Values: none, banner, complementary, contentinfo, main, navigation, search
Default Value: none

specifies the WAI-ARIA landmark role for this deck.
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. Identifiers are relative to the source component (this component), and must account for NamingContainers. If your component is already inside of a naming container, you can use a single colon to start the search from the root of the page, or multiple colons to move up through the NamingContainers - "::" will pop out of the component's naming container (or itself if the component is a naming container) and begin the search from there, ":::" will pop out of two naming containers (including itself if the component is a naming container) and begin the search from there, etc.
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.
shortDesc String Yes the short description of the component. The shortDesc is also commonly used to render an HTML title attribute, which is used by user agents to display tooltip help text. The behavior for the tooltip is controlled by the user agent, e.g. Firefox 2 truncates long tooltips.
styleClass String Yes a CSS style class to use for this component. The style class can be defined in your jspx page or in a skinning CSS file, for example, or you can use one of our public style classes, like 'AFInstructionText'.
unsecure java.util.Set Yes A whitespace separated list of attributes whose values ordinarily can be set only on the server, but need to be settable on the client. Currently, this is supported only for the "disabled" attribute. Note that when you are able to set a property on the client, you will be allowed to by using the the .setProperty('attribute', newValue) method, but not the .setXXXAttribute(newValue) method. For example, if you have unsecure="disabled", then on the client you can use the method .setProperty('disabled', false), while the method .setDisabled(false) will not work and will provide a javascript error that setDisabled is not a function.
visible boolean Yes Default Value: true

the visibility of the component. If it is "false", the component will be hidden on the client. Unlike "rendered", this does not affect the lifecycle on the server - the component may have its bindings executed, etc. - and the visibility of the component can be toggled on and off on the client, or toggled with PPR. When "rendered" is false, the component will not in any way be rendered, and cannot be made visible on the client. In most cases, use the "rendered" property instead of the "visible" property.
Not supported on the following renderkits: org.apache.myfaces.trinidad.core