TreeINFO-For-M365 documentation
    Preparing search index...
    Tip

    You can also modify field's SharePoint properties (see SPField)

    interface Column {
        CellCSSClass?: string;
        CellStyle?: any;
        DisplayLink?: boolean;
        HeaderCSSClass?: string;
        HeaderStyle?: any;
        Hidden?: boolean;
        InternalName: string;
        IsTaskColumn?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    CellCSSClass?: string

    styles column's cells using css classes

    Note

    External CSS file: To be implemented in a future release..

    CellStyle?: any

    styles column's cells using style

    Note

    The !important rule doesn't work, so if you'd like to override style that has been set with !important, use CellCSSClass instead.

    DisplayLink?: boolean

    When true, renders the column value as a clickable hyperlink.

    HeaderCSSClass?: string

    styles the column's header using css classes

    Note

    External CSS file: To be implemented in a future release..

    HeaderStyle?: any

    styles the column's header using style

    Note

    The !important rule doesn't work, so if you'd like to override style that has been set with !important, use HeaderCSSClass instead.

    Hidden?: boolean

    Hides the table column.

    InternalName: string

    The SharePoint field's internal name.

    IsTaskColumn?: boolean

    Indicates whether this column's data comes from the workflow tasks list (true) or from a related list item (false).