View the Exhibit.

How would you implement functionality to display product details in a separate window when users place
their cursors over a link in the table? (Choose the best answer.)
Correct Answer: C
Explanation/Reference:
The af:showPopupBehavior tag is a declarative way to show a af:popup in response to a client-side event.
The client event is specified using the triggerType attribute. The "action" event is the default triggerType if
one is not provided. When the showPopupBehavior tag is associated with a component, the popup
specified via the popupId attribute will automatically be shown when the associated client event is
activated. This tag only acts on client events similar to the af:clientListener tag.
This example will show the popup with the id "somePopup" when the button is clicked.
<af:commandButton id="button" text="Click me">
<af:showPopupBehavior popupid="somePopup" alignid="button"
align="endBefore" triggerType="action" />
</af:commandButton>
References: http://docs.oracle.com/cd/E12839_01/apirefs.1111/e12419/tagdoc/
af_showPopupBehavior.html