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

    Interface DataListColumn

    interface DataListColumn {
        CellCSSClass?: string;
        CellStyle?: any;
        DataList: string[];
        HeaderCSSClass?: string;
        HeaderStyle?: any;
        Hidden?: boolean;
        InputCSSClass?: string;
        InputStyle?: string | CSSProperties;
        InternalName?: string;
        Name: string;
        ReadOnly?: boolean;
        Required?: 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.

    DataList: string[]
    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.

    InputCSSClass?: string
    InputStyle?: string | CSSProperties
    InternalName?: string
    Name: string
    ReadOnly?: boolean
    Required?: boolean