Interface: KeyCapability

Oracle® JavaScript Extension Toolkit (JET)
19.0.0

G25385-01

Since:
  • 19.0.0
Module:
  • ojdataprovider

QuickNav

Fields

Description

Defines the result from the DataProvider method DataProvider#getCapability for capability "key"


Usage

Signature:

interface KeyCapability

Typescript Import Format
//To use this interface, import as below.
import {KeyCapability} from "ojs/ojdataprovider";

For additional information visit:


Fields

(nullable) structure :('none'|'pathArray'|'pathArrayString')

In the context of a TreeDataProvider, the 'pathArray' type signifies that the TreeDataProvider can generate key paths, key paths will be represented as type K[], with elements ordered according to their depth. Specifically, the first element in the array corresponds to the least depth, and subsequent elements represent increasing depths. 'pathArrayString' refers to a pathArray that has been stringified. In contrast, a type of 'none' indicates that the key values will be returned in their original form, without any modification or transformation.
Since:
  • 19.0.0