Interface TreeStateDefinition

interface TreeStateDefinition {
    activeColIdx: null | number;
    activeKey: null | string;
    expandedKeys: undefined | string[];
    selectedKeys: undefined | string[];
}

Properties

activeColIdx: null | number

The active column index if any.

activeKey: null | string

The active node's key if any.

expandedKeys: undefined | string[]

List of expanded node's keys.

selectedKeys: undefined | string[]

List of selected node's keys.