interface GridDataSourcePrivateApi {
    fetchRowChildren: ((id: GridRowId) => void);
    resetDataSourceState: (() => void);
}

Hierarchy (view full)

Properties

fetchRowChildren: ((id: GridRowId) => void)

Initiates the fetch of the children of a row.

Type declaration

    • (id): void
    • Parameters

      • id: GridRowId

        The id of the group to be fetched.

      Returns void

resetDataSourceState: (() => void)

Resets the data source state.