Blog Sections Open

Adding a Custom Editing Form Inside the Resource Edit Screen

How to extend the Evolution resource editor with a custom form for related data without replacing the whole manager workflow.

Sometimes the resource edit screen needs to manage more than the resource itself. A common pattern is adding a custom form that edits related records from another table while the editor is already working inside the document.

The goal is not to replace the manager. It is to embed one extra operational panel into an already familiar editing workflow.

What makes this viable

  • the extra data is strongly tied to the current resource,
  • editors benefit from seeing both layers together,
  • the custom form is narrow and purpose-built, not a second full manager.

In practice this often means rendering an additional block through a manager event, loading the related data for the current document id, and handling its save flow separately from the core resource fields.

Done carefully, this turns the resource editor into a better operational workspace without making the standard manager feel alien.

Newer post

Keeping Ditto Summary Output Clean When News Starts with Images or Heavy HTML

How to make Ditto summaries behave when introtext begins with images or contains markup that should not leak into listing excerpts.

Older post

Refining the Document Edit Form with ManagerManager Field Labels and Visibility Rules

How to use ManagerManager more deliberately so editors see clearer field names and a simpler document form instead of raw technical defaults.