interface GridAutoGeneratedPinnedRowNode {
    depth: number;
    id: GridRowId;
    isAutoGenerated: false;
    parent: GridRowId;
    type: "pinnedRow";
}

Hierarchy

  • GridBasicPinnedRowNode
    • GridAutoGeneratedPinnedRowNode

Properties

depth: number

Depth of this node in the tree.

The uniq id of this node.

isAutoGenerated

If true, this node has been automatically generated by the grid.

parent: GridRowId

The id of the group containing this node. Is always equal to GRID_ROOT_GROUP_ID.

type