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

    Lets you work with a form group dynamically on the form page. Provides programmatic access to group properties and allows changing them.

    // Hide myGroup1 if current status is 'settlement'
    const { s_status } = tisa.form.field;
    const { g_myGroup1 } = tisa.form.group;

    g_myGroup1.hidden = s_status.value === "settlement"

    Hierarchy

    • BaseService
      • Group
    Index

    Properties

    Properties

    collapsed: boolean

    Collapses the group in the form when set to true. The group header remains visible and the user can expand it by clicking.

    hidden: boolean

    Hides the group in the form when set to true.

    id: string

    Unique group identifier.

    name: string

    Display name that is shown in the UI.