Type alias TreeRecord

TreeRecord: {
    check?: boolean;
    children?: TreeRecord[];
    cls?: string;
    dataSet?: any;
    href?: string;
    icon?: MaterialIcon;
    id?: string;
    text: string;
}

Type declaration

  • Optional check?: boolean

    If set a checkbox will render

  • Optional children?: TreeRecord[]

    Child nodes. If not present then it can be populated on the "expand" event.

  • Optional cls?: string

    CSS class for the node

  • Optional dataSet?: any

    Arbitrary node data

  • Optional href?: string
  • Optional icon?: MaterialIcon

    Icon to display

  • Optional id?: string

    Unique ID of the node

  • text: string

    Text of the node

Generated using TypeDoc