Member Junction
    Preparing search index...

    Information about a section within the form. Used to initialize and track section state.

    interface FormSectionInfo<M = unknown> {
        Icon?: string;
        InheritedFromEntity?: string;
        IsExpanded: boolean;
        Metadata?: M;
        RowCount?: number;
        SectionKey: string;
        SectionName: string;
        Variant?: PanelVariant;
    }

    Type Parameters

    • M = unknown

      Optional metadata type for custom per-section data

    Index

    Properties

    Icon?: string

    Font Awesome icon class for the section header

    InheritedFromEntity?: string

    If set, indicates this section contains fields inherited from a parent entity. The value is the parent entity name (e.g., "Products" for a Meeting IS-A Product).

    IsExpanded: boolean

    Whether the section starts expanded. Default: true for field sections, false for related entities

    Metadata?: M

    Custom metadata attached to this section

    RowCount?: number

    Row count for related entity sections (shown as badge)

    SectionKey: string

    Unique key for this section (used in state persistence)

    SectionName: string

    Display name shown in the panel header

    Variant?: PanelVariant

    Panel variant for styling