interface GridRowProPrivateApi {
    updateServerRows: ((updates: GridRowModelUpdate[], groupKeys?: string[]) => void);
}

Properties

Properties

updateServerRows: ((updates: GridRowModelUpdate[], groupKeys?: string[]) => void)

Allows to update, insert and delete rows at a specific nested level.

Type declaration

    • (updates, groupKeys?): void
    • Parameters

      • updates: GridRowModelUpdate[]

        An array of rows with an action specifying what to do.

      • OptionalgroupKeys: string[]

        The group keys of the rows to update.

      Returns void