Member Junction
    Preparing search index...

    Form is asking the host to close/dismiss it.

    Emitted by BaseFormComponent.CancelEdit when the discarded record was never saved (!record.IsSaved) — there's no actual record to view, so leaving the form open in view mode shows blank fields and confuses users. The host application should close the tab/dialog/route that contained the form and return the user to whatever surface they came from (typically a list view).

    Hosts that don't have a meaningful "close" semantic (e.g., a form embedded inline on a dashboard) can safely ignore this — the form has already reverted state and returned to view mode.

    interface DismissFormNavigationEvent {
        Kind: "dismiss";
        Reason: "new-record-discarded";
    }
    Index

    Properties

    Properties

    Kind: "dismiss"
    Reason: "new-record-discarded"

    Reason for the dismiss request — useful for analytics / different host behaviors.