UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

25 lines (24 loc) 1.02 kB
import { IgrGridEditEventArgsDetail } from "./igr-grid-edit-event-args-detail"; import { GridEditEventArgs as GridEditEventArgs_internal } from "./GridEditEventArgs"; import { ContentChildrenManager } from "igniteui-react-core"; /** * Represents event arguments related to grid editing. * The event is cancelable * It contains information about the row and the column, as well as the old and nwe value of the element/cell */ export declare class IgrGridEditEventArgs { protected createImplementation(): GridEditEventArgs_internal; protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): GridEditEventArgs_internal; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(); protected _provideImplementation(i: any): void; get detail(): IgrGridEditEventArgsDetail; set detail(v: IgrGridEditEventArgsDetail); }