Element: <oj-c-list-view>

CORE PACK

Oracle® JavaScript Extension Toolkit (JET)
15.0.0

F75901-01

Since:
  • 15.0.0
Module:
  • list-view

QuickNav

Attributes


JET ListView Component

Description: The JET ListView enhances a HTML list element into a themable, WAI-ARIA compliant, mobile friendly component with advance interactive features. The child content can be configured via a DataProvider which should be used for mutable data.

For migration information from oj-list-view refer to the migration section in the API docs.

Data

The JET ListView gets its data from a DataProvider.

ArrayDataProvider - Use this when the underlying data is an array object or an observableArray. In the observableArray case, ListView will automatically react when items are added or removed from the array. See the documentation for ArrayDataProvider for more details on the available options.

Example of data provider content


  <oj-c-list-view aria-label="Accessible Summary" data="[[dataProvider]]">
  </oj-c-list-view>

Check out the Listview Basic demo

Coming Features

These features will be the domain of new, specialized components

  • Cards in grid layout
  • Cards in waterfall layout
  • Grouped list
  • Expandable list

These features will be available in forthcoming versions

  • Context menu
  • Selection required
  • First selected item
  • Reordering, drag and drop with move, copy and paste functionalities
  • Managing scroll position

Keyboard End User Information

Target Key Action
List Item F2 Enters tabbable mode. This enables keyboard action on elements inside the item, including navigate between focusable elements inside the item. It can also be used to exit tabbable mode if already in tabbable mode.
Esc Exits tabbable mode.
Tab When in tabbable mode, navigates to next focusable element within the item. If the last focusable element is reached, shift focus back to the first focusable element. When not in tabbable mode, navigates to next focusable element on page (outside ListView).
Shift+Tab When in tabbable mode, navigates to previous focusable element within the item. If the first focusable element is reached, shift focus back to the last focusable element. When not in tabbable mode, navigates to previous focusable element on page (outside ListView).
DownArrow Move focus to the item below.
UpArrow Move focus to the item above.
Shift+DownArrow Extend the selection to the item below.
Shift+UpArrow Extend the selection to the item above.
Space Toggles to select and deselect the current item. If previous items have been selected, deselects them and selects the current item.
Shift+Space Selects contiguous items from the last selected item to the current item.
Ctrl+Space Toggles to select and deselect the current item while maintaining previous selected items.

Accessibility

Application should specify a value for the aria-label attribute with a meaningful description of the purpose of this list.

Note that ListView uses the grid role and follows the Layout Grid design as outlined in the grid design pattern

Nesting collection components such as ListView, Table, TreeView, and ListView inside of ListView is not supported.

Custom Colours

Using colors, including background and text colors, is not accessible if it is the only way information is conveyed. Low vision users may not be able to see the different colors, and in high contrast mode the colors are removed. The Redwood approved way to show status is to use badge.

Item Context

For all item options, developers can specify a function as the return value. The function takes a single argument, which is an object that contains contextual information about the particular item. This gives developers the flexibility to return different value depending on the context.

The context parameter contains the following keys:

Key Description
data The data of the item. Note this is made available primarily to ease migration. Applications should get the data from the item property instead.
item An object that contains the data and metadata for the item.
isTabbable A boolean indicating whether the item is in tabbable mode or not. This should be used to implement conditional behavior for all tabbable elements, this avoids creating a keyboard trap when tabbing through a List.
This can be implemented as a conditional tabindex, for example tabindex="[[!item.isTabbable && '-1']]".
When composing with core pack components, this is not needed, as they are tabbable mode aware.

The following keys are not currently supported:

Key Description
componentElement A reference to the root element of ListView.
datasource A reference to the data source object.
index The index of the item, where 0 is the index of the first item. In the hierarchical case the index is relative to its parent.
key The key of the item (this duplicates item.metadata.key and has been deprecated)
metadata The metadata of the item (this is instead available in item)
parentElement This will be supported by the Hierarchical list component and no longer applies to list view..

Custom Data Attributes

ListView supports the following custom data attributes.

Name Description Example
data-oj-as Provides an alias for a specific template instance and has the same subproperties as the $current variable.
<oj-c-list-view id="listView">
  <template slot="itemTemplate" data-oj-as="item">
  </template>
</oj-c-list-view>
data-oj-clickthrough

Specify on any element inside an item where you want to control whether ListView should perform actions triggered by a click event originating from the element or one of its descendants.

For example, if you specify this attribute with a value of "disabled" on a link inside an item, then ListView will not select or trigger itemAction event to be fired when user clicks on the link.

Note that the currentItem will still be updated to the item that the user clicked on.

Also note you do not need to set this attribute on core pack components such as oj-c-button, as it natively supports disabling clickthrough.

<oj-c-list-view id="listView">
  <template slot="itemTemplate">
    <a href="#" data-oj-clickthrough="disabled"></a
  </template>
</oj-c-list-view>
data-oj-manage-tabs

ListView does not manipulate the tabindex of the item content. Applications should set the tabIndex of any focusable element based on the isTabbableMode property from the context pass to the itemTemplate.

However, there will be cases where you can't control the tabindex of the content, for example, if you are using components from another team.

In that case, applications can specify this attribute on the element or one of its ancestors so that when the itemTemplate is processed, it will scan and manipulate the tabindex of any focusable elements.

<oj-c-list-view id="listView">
  <template slot="itemTemplate">
    <some-component-with-focusable-elements data-oj-manage-tabs></some-component-with-focusable-elements
  </template>
</oj-c-list-view>

Suggestion Items

If ItemMetadata returned by the DataProvider contains suggestion field, ListView will apply special visual to those items. The DataProvider must ensure the suggestion items are the first items returned by the initial fetchFirst call.


Usage

Signature:

interface CListViewElement<K extends string | number,D>

Typescript Import Format
//To typecheck the element APIs, import as below.
import { CListViewElement } from "oj-c/list-view";

//For the transpiled javascript to load the element's module, import as below
import "oj-c/list-view";

For additional information visit:

Note: Application logic should not interact with the component's properties or invoke its methods until the BusyContext indicates that the component is ready for interaction.


Slots

JET components that allow child content support slots. Please see the slots section of the JET component overview doc for more information on allowed slot content and slot types.

itemTemplate

The itemTemplate slot is used to specify the template for rendering each item in the List. The slot content must be a <template> element.

When the template is executed for each item, it will have access to the binding context containing the following properties:

  • $current - an object that contains information for the current item.
Properties of $current:
Name Type Description
data D The data of the item. Note this is made available primarily to ease migration. Applications should get the data from the item property instead.
isTabbable boolean A boolean indicating whether the item is in tabbable mode or not. Template elements should not be tab-stops when the item is not in tabbable mode, this context can be used to implement conditional behavior for all tabbable child elements.
item Item.<K, D> Contains the data and metadata of the item.

noData

The noData slot is used to specify the content to display when the list is empty. The slot content must be a <template> element. If not specified then a default no data message will be displayed.

Attributes

(readonly) current-item :any

The item that currently has keyboard focus
Supports writeback:
  • true
Names
Item Name
Property currentItem
Property change event currentItemChanged
Property change listener attribute (must be of type function, see Events and Listeners for additional information.) on-current-item-changed

data :(DataProvider.<K, D>|null)

The data source for ListView. Must be of type DataProvider.
Names
Item Name
Property data
Property change event dataChanged
Property change listener attribute (must be of type function, see Events and Listeners for additional information.) on-data-changed

gridlines :oj-c.ListView.Gridlines

Specifies whether the horizontal grid lines should be visible. By default gridlines are hidden. It takes the keys `item`, `top` and `bottom`, each of which are optional and take a value of "hidden" or "visible". `item` toggles the presence of bottom gridlines except the last item, and `top` and `bottom` toggle the initial and trailing gridlines. By default all gridlines are hidden.
Names
Item Name
Property gridlines
Property change event gridlinesChanged
Property change listener attribute (must be of type function, see Events and Listeners for additional information.) on-gridlines-changed

scroll-policy-options :{ fetchSize?: number; scroller?: string }

scrollPolicy options.

The following options are supported:

  • fetchSize: The number of items fetched each time when scroll to the end.
  • scroller: The css selector that locates the element in which listview uses to determine the scroll position as well as the maximum scroll position where scroll to the end will trigger a fetch. If not specified then the root element of listview is used.
By default, the next block of rows is fetched when the user scrolls to the end of the list/scroller. The fetchSize option determines how many rows are fetched in each block.

Names
Item Name
Property scrollPolicyOptions
Property change event scrollPolicyOptionsChanged
Property change listener attribute (must be of type function, see Events and Listeners for additional information.) on-scroll-policy-options-changed

scroll-policy-options.fetch-size :number

Names
Item Name
Property scrollPolicyOptions.fetchSize

scroll-policy-options.scroller :string

Names
Item Name
Property scrollPolicyOptions.scroller

selected :ImmutableKeySet.<K>

The current selected items in the ListView. An empty KeySet indicates nothing is selected. Note that property change event for the deprecated selection property will still be fire when selected property has changed. In addition, AllKeySetImpl set can be used to represent select all state. In this case, the value for selection would have an 'inverted' property set to true, and would contain the keys of the items that are not selected.
Supports writeback:
  • true
Names
Item Name
Property selected
Property change event selectedChanged
Property change listener attribute (must be of type function, see Events and Listeners for additional information.) on-selected-changed

selection-mode :"multiple"|"none"|"single"

The type of selection behavior that is enabled on the ListView. This attribute controls the number of selections that can be made via selection gestures at any given time.

If single or multiple is specified, selection gestures will be enabled, and the ListView's selection styling will be applied to all items specified by the selection and selected attributes. If none is specified, selection gestures will be disabled, and the ListView's selection styling will not be applied to any items specified by the selection and selected attributes.

Changing the value of this attribute will not affect the value of the selection or selected attributes.

Supported Values:
Value Description
multiple Multiple items can be selected at the same time.
none Selection is disabled.
single Only a single item can be selected at a time.
Default Value:
  • "none"
Names
Item Name
Property selectionMode
Property change event selectionModeChanged
Property change listener attribute (must be of type function, see Events and Listeners for additional information.) on-selection-mode-changed

Events

ojItemAction

Triggered when user performs an action gesture on an item while ListView is in navigation mode. The action gestures include:
  • User clicks anywhere in an item
  • User taps anywhere in an item
  • User pressed spacebar on an item
Properties:

All of the event payloads listed below can be found under event.detail. See Events and Listeners for additional information.

Name Type
context oj-c.ListView.ListItemContext

Methods

getProperty(property) : {any}

Retrieves the value of a property or a subproperty.
Parameters:
Name Type Description
property The property name to get. Supports dot notation for subproperty access.
Returns:
Type
any

setProperties(properties) : {void}

Performs a batch set of properties.
Parameters:
Name Type Description
properties An object containing the property and value pairs to set.
Returns:
Type
void

setProperty(property, value) : {void}

Sets a property or a single subproperty for complex properties and notifies the component of the change, triggering a corresponding event.
Parameters:
Name Type Description
property The property name to set. Supports dot notation for subproperty access.
value The new value to set the property to.
Returns:
Type
void

Type Definitions

Gridlines

Properties:
Name Type Argument
bottom "hidden" | "visible" <optional>
item "hidden" | "visible" <optional>
top "hidden" | "visible" <optional>

ListItemContext<K,D>

Properties:
Name Type Description
data any The data of the item. Note this is made available primarily to ease migration. Applications should get the data from the item property instead.
item object Contains the data and metadata of the item.