TreeINFO-For-M365 documentation
    Preparing search index...
    const { myTable } = tisa.form.field;
    const columns = myTable.columns
    const departmentColumn = columns.find(column => column.internalName === "department")

    if(departmentColumn.readOnly) {
    const divisionColumn = columns.find(column => column.internalName === "division")
    divisionColumn.hidden = true
    }
    interface IFieldAdvancedTableColumn {
        hidden: boolean;
        internalName: string;
        name: string;
        readOnly: boolean;
        type: string;
    }
    Index

    Properties

    hidden: boolean

    Gets or sets the column's visibility.

    internalName: string

    Gets the column's internalName.

    name: string

    Gets or sets column's display name.

    readOnly: boolean

    Gets or sets the column as readOnly.

    type: string

    Gets the column's type.