Interface: DataGridProviderRemoveOperationEventDetail

Oracle® JavaScript Extension Toolkit (JET)
15.1.0

F83698-01

Since:
  • 11.0.0
Module:
  • ojdatagridprovider

QuickNav

Fields

Description

Interface defining the details provided in a DataGridProviderRemoveEvent#detail. Note that both rows and columns cannot be removed in the same remove event.


Usage

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

For additional information visit:


Interface defining the details provided in a DataGridProviderRemoveEvent#detail. Note that both rows and columns cannot be removed in the same remove event.

Fields

axis :'row'|'column'

Axis of the ranges being removed.
Since:
  • 11.0.0

ranges :Array.<{offset: number, count: number}>

Ranges being removed in the remove event. Offset is the absolute zero-based index of the start row/column being removed. Count is the total number of rows/columns at that offset being removed.
Since:
  • 11.0.0

version :number

Version of the DataGridProvider specified by version capability to ensure proper event ordering.
Since:
  • 11.0.0