Note:Any Coral CSS classes and attributes not explicitly mentioned in the public documentation are private and subject to change. Their direct use is not recommended and at high risk of breaking after subsequent updates of CoralUI library. For technical details of how to use Coral safely, please refer to the CoralUI Architecture.
<script>var quickActions =newCoral.QuickActions();
quickActions.id ='quickActions';
quickActions.target ='_prev';// Let's use the previous element as target
quickActions.threshold ='2';// .. and limit the number of Items we show before collapse
quickActions.placement ='bottom';// .. and place at the bottom of the target.var target = document.getElementById('quickActionsTarget');
target.parentNode.insertBefore(quickActions, target.nextSibling);// Add to the DOM</script>
The QuickActions implement the Collection API as a way of manipulating the action Items. It provides add(), remove(), clear(),
and getAll(), as well as their corresponding events to keep track of the Items. Check
Coral.Collection for more information.
Use event.preventDefault() in the click event handler to suppress the hide of the QuickActions. Note that if the mouse exits the target, the QuickActions will still hide even if default is prevented.
The interaction property must be 'ON' for user interaction with the target to take effect.
Hovering the target will display the QuickActions. They can also be launched by pressing the shift + F10 key combination
when the target is focused. When the QuickActions are shown, the first action button is focused.
When a button in the QuickActions is focused, it is possible to navigate using keys. Navigate right using 'right', 'down' or 'pagedown'
keys and left using 'left', 'up' and 'pageup'. A 'home' or 'end' keypress will navigate to the first or last buttons
respectively.
An 'escape' key will close the QuickActions, unless the more actions Popover is already open, in which case two
presses subsequent will be necessary, the first to close the Popover.
Pressing the 'enter' key for a focused Item will cause a trigger of the click event for that action. Unless the
focused item is the more button, in which case the Popover will open.
The placement of the QuickActions. This property sets Coral.Overlay#alignMy and
Coral.Overlay#alignAt. The value may be one of 'top', 'center' and 'bottom' and indicates the vertical
alignment of the QuickActions relative to their container.
The element the overlay should position relative to. It accepts values from Coral.Overlay.target, as
well as a DOM element or a CSS selector. If a CSS selector is provided, the first matching element will be used.
If a target is not specified, the overlay will not respect Coral.Overlay#alignMy,
Coral.Overlay#alignAt, or Coral.Overlay#collision.
The number of items that are visible in QuickActions (excluding the show more actions button) before a collapse
is enforced. A value <= 0 disables this feature and shows as many items as possible. Regardless of this
property, the QuickActions will still fit within their target's width.
Tracking of events. This provides insight on the usage of the components. It accepts "ON" and "OFF". In order to
successfully track the events, {Coral.tracking} needs to be configured.
The string representing the feature being tracked. This provides additional context to the analytics trackers
about the feature that the element enables.
The bounding element for the overlay. The overlay will be sized and positioned such that it is contained within
this element. It accepts both a DOM Element or a CSS selector. If a CSS selector is provided, the first matching
element will be used.
Non-destructively remove this element. It can be re-added by simply appending it to the document again.
It will be garbage collected if there are no more references to it.
Tracking of events. This provides insight on the usage of the components. It accepts "ON" and "OFF". In order to
successfully track the events, {Coral.tracking} needs to be configured.
The string representing the feature being tracked. This provides additional context to the analytics trackers
about the feature that the element enables.
Non-destructively remove this element. It can be re-added by simply appending it to the document again.
It will be garbage collected if there are no more references to it.