Member Junction
    Preparing search index...

    Per-section state a form's chrome can surface — the left-nav rail, an accordion header, the collapsed rail spine — so a user editing a multi-section record can see WHICH section holds unsaved edits or invalid input without opening each one.

    Counts are of fields, not messages: a section with one required field left blank and one field failing two rules reports ErrorCount: 2.

    interface FormSectionIndicators {
        DirtyCount: number;
        ErrorCount: number;
        WarningCount: number;
    }
    Index

    Properties

    DirtyCount: number

    Fields modified since the last save. Mirrors the amber dot on an edited field.

    ErrorCount: number

    Fields that cannot be saved as they stand — a failing validation rule, or a required field that is empty. Mirrors the red underline on the field itself.

    WarningCount: number

    Fields carrying a warning-level validation result and no failure.