Element: <oj-gantt-row>
Oracle® JavaScript Extension Toolkit (JET)
8.0.0
F18189-01
Signature:
class ojGanttRow
- Version:
- 8.0.0
- Since:
- 5.2.0
- Module:
- ojgantt
Module usage
See JET Module Loading for an overview of module usage within JET.
Typescript Import Format
//To typecheck the element APIs, import as below.
import {ojGanttRow} from "ojs/ojgantt";
//For the transpiled javascript to load the element's module, import as below
import "ojs/ojgantt";
JET In Typescript
A detailed description of working with JET elements and classes in your typescript project can be found at: JET Typescript Usage.
JET Gantt Row
The oj-gantt-row element is used to declare properties for gantt rows and is only valid as the child of a template element for the rowTemplate slot of oj-gantt.
<oj-gantt task-data="[[taskDataProvider]]">
<template slot="rowTemplate">
<oj-gantt-row
label="[[$current.tasks[0].data.resource]]">
</oj-gantt-row>
</template>
</oj-gantt>