UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

59 lines (58 loc) 1.88 kB
import { IgrGridCellIdentifier } from "./igr-grid-cell-identifier"; import { IgrGridBaseDirective } from "./igr-grid-base-directive"; import { RowDataCancelableEventArgsDetail as RowDataCancelableEventArgsDetail_internal } from "./RowDataCancelableEventArgsDetail"; import { ContentChildrenManager } from "igniteui-react-core"; export declare class IgrRowDataCancelableEventArgsDetail { protected createImplementation(): RowDataCancelableEventArgsDetail_internal; protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): RowDataCancelableEventArgsDetail_internal; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(); protected _provideImplementation(i: any): void; /** * @deprecated */ get cellID(): IgrGridCellIdentifier; set cellID(v: IgrGridCellIdentifier); /** * @deprecated */ get oldValue(): any; set oldValue(v: any); /** * @deprecated */ get newValue(): any; set newValue(v: any); /** * @deprecated */ get isAddRow(): boolean; set isAddRow(v: boolean); get owner(): IgrGridBaseDirective; set owner(v: IgrGridBaseDirective); /** * @deprecated Use the `rowData` property instead. */ get data(): any; set data(v: any); get rowData(): any; set rowData(v: any); /** * Represents the unique key, the row can be associated with. * Available if `primaryKey` exists * @deprecated Use the `rowKey` property instead. */ get primaryKey(): any; set primaryKey(v: any); get rowKey(): any; set rowKey(v: any); findByName(name: string): any; setNativeElement(element: any): void; }