Element: <oj-progress-list>

Oracle® JavaScript Extension Toolkit (JET)
15.1.0

F83698-01

Since:
  • 4.0.0
Module:
  • ojprogresslist

Note: This component is deprecated since 8.0.0. Use alternative: <oj-list-view>.

Note: This component is not supported in the following themes: Redwood

QuickNav

Attributes


JET ProgressList

Description:

Display a ListView where the data is a DataProvider or TableDataSource and data rows are ProgressItems.

Please see the ListView for Touch and Keyboard End User Information

See oj.ojListView

See DataProvider

See TableDataSource

See oj.ProgressItem


<oj-progress-list data='{{dataProvider}}'>
</oj-progress-list>


Usage

Signature:

interface ProgressListElement

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

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

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.


Attributes

data :(DataProvider|TableDataSource|null) data :(DataProvider.<any, any>|null)

Data used by the ProgressList.
Default Value:
  • null
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

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