Member Junction
    Preparing search index...

    Abstract base for every dynamically-injectable form panel.

    Subclasses are standalone Angular components decorated with @RegisterClass(BaseFormPanel, { metadata: { entity, slot, sortKey? } }). At runtime, <mj-form-panel-slot> discovers matching registrations via ClassFactory.GetAllRegistrationsByMetadata, instantiates each via ViewContainerRef.createComponent, and wires Record + FormComponent + FormContext into the inputs.

    Lifecycle hooks: standard Angular ngOnInit / ngOnDestroy work as usual. Record is guaranteed to be set before the first change-detection pass.

    Optional validate() returns a synchronous validation result; the parent BaseFormComponent.Save() path will surface it via the existing validation pipeline when called. Panels that don't validate anything beyond what the record itself does can leave this method off.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    FormComponent: BaseFormComponent

    The host form component (use for EditMode, dirty notifications, etc). Set by the slot host.

    FormContext?: FormContext

    Optional form context — same shape the collapsible-panel chrome expects. Set by the slot host.

    HostDisplay: "contents"

    Slot-mounted hosts must not sit in the left-nav flex column — leftover height targets mj-collapsible-panel as a direct child of .mj-forms-all-panels. display: contents makes the inner panel that child.

    IsCollapsed: boolean = false

    The entity record being edited. Set by the slot host before view init.

    "ɵdir": unknown
    "ɵfac": ɵɵFactoryDeclaration<BaseFormPanel<any>, never>

    Accessors

    • get EditMode(): boolean

      Convenience getter for read-only / edit-mode rendering. Falls back to false when the panel is shown outside a BaseFormComponent host (e.g., a dashboard quick-edit dialog reusing the same panel — see the "composable panel" docs).

      Returns boolean

    Methods

    • Dynamically disables a toolbar item by key, with an optional reason string for the tooltip.

      Parameters

      Returns void

    • Called after the parent form reloads the current record from the database. Default is a no-op. Override to refresh panel-owned data that is not a related-entity grid (those already subscribe to FormRecordRefreshCoordinator themselves).

      Parameters

      Returns void

    • Unregisters a previously registered dynamic toolbar item by key.

      Parameters

      • key: string

      Returns void

    • Override to add per-panel validation that should block the parent form's Save(). Return { Success: true, Errors: [] } when valid, or include ValidationErrorInfo entries to surface field-level errors. The default implementation reports valid (panels that don't need extra validation can leave this method off).

      Returns ValidationResult