interface GridDetailPanelPrivateApi {
    detailPanelHasAutoHeight: ((id: GridRowId) => boolean);
    storeDetailPanelHeight: ((id: GridRowId, height: number) => void);
}

Hierarchy (view full)

Properties

detailPanelHasAutoHeight: ((id: GridRowId) => boolean)

Determines if the height of a detail panel is "auto".

Type declaration

    • (id): boolean
    • Parameters

      Returns boolean

      true if the detail panel height is "auto".

storeDetailPanelHeight: ((id: GridRowId, height: number) => void)

Stores the panel height measurement and triggers the row height pre-processing.

Type declaration

    • (id, height): void
    • Parameters

      • id: GridRowId

        The id of the row.

      • height: number

        The new height.

      Returns void