DataUpdateConfig
Object used to configure GridApi row management methods
TypeScript
export interfaceProperties
| Property | Description |
|---|---|
| addIndex | Index where to add new rows |
| callback | Callback function invoked when a batch successfully concludes |
| flushAsync | Whether to flush async operations |
| runAsync | Whether 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