OptionalcannotCustomize or hide the "cannot save changes" prompt (shown when the content editor cannot save).
This is an informational notice, not a yes/no confirmation, so it does not
support autoResolve. Returning null from render hides the prompt and
keeps the editor open; to discard the failed session programmatically call
getInstance()?.discardContentEditingSession().
OptionaldownloadCustomize or hide the download document confirmation (shown when downloading during content editing). Set autoResolve: "accept" to download automatically; autoResolve: "reject" dismisses it without downloading.
OptionalexitCustomize or hide the exit content editor confirmation (shown when leaving content editor with unsaved changes). Set autoResolve: "accept" to save and exit automatically; autoResolve: "reject" keeps the editor open.
OptionalfontCustomize or hide the font mismatch warning (shown when a font used in the document is not available).
OptionalsubsetCustomize or hide the subset font warning (shown when a font is only partially embedded).
Content editor slot configuration - confirmations and warnings during content editing sessions.
These slots control the dialog and warning UI that appears during content editing. Use
getInstance()?.saveContentEditingSession()andgetInstance()?.discardContentEditingSession()to programmatically control content editing from custom UI.Example
Save and exit automatically instead of showing a confirmation:
Example
Skip the document download confirmation and download automatically (the prompt only appears in Server mode / Document Engine sessions):
See
UI.Configuration