Imperatively opens any MemberJunction entity form as a dialog or slide-in from anywhere — one call, no template wiring.
const ref = this.formPresenter.Open({ EntityName: 'MJ: AI Agents', RecordId: agentId, Presentation: 'slide-in', Config: { ShowRelatedEntities: false },});const saved = await ref.AfterSaved(); // BaseEntity | null Copy
const ref = this.formPresenter.Open({ EntityName: 'MJ: AI Agents', RecordId: agentId, Presentation: 'slide-in', Config: { ShowRelatedEntities: false },});const saved = await ref.AfterSaved(); // BaseEntity | null
Mounts the (standalone) overlay shell onto document.body, wires its outputs to the returned MJFormRef, and tears everything down after close.
document.body
Imperatively opens any MemberJunction entity form as a dialog or slide-in from anywhere — one call, no template wiring.
Mounts the (standalone) overlay shell onto
document.body, wires its outputs to the returned MJFormRef, and tears everything down after close.