Member Junction
    Preparing search index...

    Anything that can answer "what is the state of section X right now".

    mj-collapsible-panel implements this for every section it renders, deriving the counts from its mj-form-field children. A custom section that is NOT a collapsible panel — a hero, a designer, a grid editor — can implement it too and register with the container's FormSectionIndicatorCoordinator, so the rail treats it like any other section.

    interface FormSectionIndicatorSource {
        SectionKey: string;
        GetSectionIndicators(): FormSectionIndicators;
        OwnsValidationSource(source: ParsedValidationSource): boolean;
    }

    Implemented by

    Index

    Properties

    SectionKey: string

    The chrome section key this source reports for (matches mj-collapsible-panel SectionKey).

    Methods