Element: <oj-list-item-layout>

Oracle® JavaScript Extension Toolkit (JET)
16.0.0

F83701-01

Since:
  • 9.0.0
Module:
  • ojlistitemlayout

Note: This component is in maintenance mode. Suggested alternative: <oj-c-list-item-layout>. For help updating an existing application, see the migration section.

QuickNav


JET ListItem Layout

Description: A JET ListItemLayout component helps application teams to easily layout their content into different slots.

//ListItemLayout with text
<oj-list-view id="listview1" aria-label="list layout within list view" data="[[dataProvider]]" style="width: 450px;"
                 selected="{{selectorSelectedItems}}" selection-mode="multiple">
   <template slot="itemTemplate" data-oj-as="item">
      <li>
         <oj-list-item-layout>
            <oj-selector slot='selector' selected-keys='{{selectorSelectedItems}}' key='[[item.data.id]]'>
            </oj-selector>
            <div>
               <oj-bind-text value="default"></oj-bind-text>
            </div>
         </oj-list-item-layout>
      </li>
   </template>
</oj-list-view>

Migration

Read about current Core Pack limitations to decide when to migrate.
Please make note of the following:

  • Deprecated APIs are not available in Core Pack, and are not documented in this migration section.
  • Before trying to migrate to Core Pack run the JET audits and fix any issues before proceeding.
  • The refresh() method is no longer supported in Core Pack. See the Core Pack Migration Guide for more information.

To migrate from ojlistitemlayout to oj-c-list-item-layout, you need to revise the import statement and references to oj-c-list-item-layout in your app.
Padding Off
The feature to remove default padding around the List Item Layout has changed. Replace the class "oj-listitemlayout-padding-off" with a prop, inset, set to none

Example: <oj-c-list-item-layout inset="none">


Usage

Signature:

interface ListItemLayoutElement

Typescript Import Format
//To typecheck the element APIs, import as below.
import { ListItemLayoutElement } from "ojs/ojlistitemlayout";

//For the transpiled javascript to load the element's module, import as below
import "ojs/ojlistitemlayout";

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.


Styling Classes

.oj-listitemlayout-padding-off
Turn off horizontal and vertical padding for the list item layout.
Example
<oj-list-item-layout class='oj-listitemlayout-padding-off'>
 <div>
  <oj-bind-text value='default'>
  </oj-bind-text>
 </div>
</oj-list-item-layout>

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.

Default

The default slot accepts default text.

Example
<oj-list-item-layout>
   <div>
      <oj-bind-text value="default"></oj-bind-text>
   </div>
</oj-list-item-layout>

action

The action slot is used for adding either one primary action or one or more secondary actions. Note that navigation slot by default sets data-oj-clickthrough to "disabled", so that any actions performed in the slot will not propagate to its parent component.

Example
<oj-list-item-layout>
   <div slot="action">
      <oj-button>Edit</oj-button>
   </div>
</oj-list-item-layout>

leading

The leading slot is used for adding a leading visual next to the selector. Leading slot content can be a badge, image, avatar or initials.

Example
<oj-list-item-layout>
   <oj-avatar slot='leading' role="img" size="xs" initials='[[item.data.initials]]'
                 src="[[item.data.image]]" :aria-label="[['Avatar of ' + item.data.name]]"
                 :title="[['Avatar of ' + item.data.name]]">
   </oj-avatar>
</oj-list-item-layout>

metadata

The metadata slot is used for adding extra trailing information. Examples of metadata are author, date etc.

Example
<oj-list-item-layout>
   <div slot="metadata">
      <oj-bind-text value="metadata"></oj-bind-text>
   </div>
</oj-list-item-layout>

The navigation slot is used for adding a navigation control, such as a link or button.

Note that navigation slot by default sets data-oj-clickthrough to "disabled", so that any actions performed in the slot will not propagate to its parent component.
Example
<oj-list-item-layout>
   <div slot="navigation">
      <oj-button>navigation</oj-button>
   </div>
</oj-list-item-layout>

overline

The overline slot is used for adding overline text above the default text.

Example
<oj-list-item-layout>
   <div slot="overline">
      <oj-bind-text value="overline"></oj-bind-text>
   </div>
</oj-list-item-layout>

quaternary

The quaternary slot is used for adding quaternary text below the tertiary text.

Example
<oj-list-item-layout>
   <div slot="quaternary">
      <oj-bind-text value="quaternary"></oj-bind-text>
   </div>
</oj-list-item-layout>

secondary

The secondary slot is used for adding secondary text below the default text.

Example
<oj-list-item-layout>
   <div slot="secondary">
      <oj-bind-text value="secondary"></oj-bind-text>
   </div>
</oj-list-item-layout>

selector

The selector slot can accept an oj-selector component and is optional.

Example
<oj-list-item-layout>
   <oj-selector slot='selector' selected-keys='{{selectorSelectedItems}}' key='[[item.data.id]]'>
   </oj-selector>
</oj-list-item-layout>

tertiary

The tertiary slot is used for adding tertiary text below the secondary text.

Example
<oj-list-item-layout>
   <div slot="tertiary">
      <oj-bind-text value="tertiary"></oj-bind-text>
   </div>
</oj-list-item-layout>

trailing

The trailing slot is used for adding a trailing visual. Trailing slot content can be a badge, image or icon.

Example
<oj-list-item-layout>
   <oj-avatar slot='trailing' role="img" size="xs" initials='[[item.data.initials]]'
                 src="[[item.data.image]]" :aria-label="[['Avatar of ' + item.data.name]]"
                 :title="[['Avatar of ' + item.data.name]]">
   </oj-avatar>
</oj-list-item-layout>

Methods

getProperty(property) : {any}

Retrieves a value for a property or a single subproperty for complex properties.
Parameters:
Name Type Description
property string 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 Object 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 [property]Changed event.
Parameters:
Name Type Description
property string The property name to set. Supports dot notation for subproperty access.
value any The new value to set the property to.
Returns:
Type
void