Object used to configure GridApi row management methods

TypeScript
export interface

Properties

PropertyDescription
addIndexIndex where to add new rows
callbackCallback function invoked when a batch successfully concludes
flushAsyncWhether to flush async operations
runAsyncWhether row operation should happen asynchronously

Property Details

addIndex

Index where to add new rows

TypeScript
addIndex?: number;
Property Value

number

callback

Callback function invoked when a batch successfully concludes

TypeScript
callback?: (res: any) => void;
Property Value

(res: any) => void

flushAsync

Whether to flush async operations

TypeScript
flushAsync?: boolean;
Property Value

boolean

runAsync

Whether row operation should happen asynchronously

TypeScript
runAsync?: boolean;
Property Value

boolean