---
title: "Feature: #107058 - Simplify registration of a custom form element"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-107058-1769168658"
source: "Changelog/14.2/Feature-107058-SimplifyRegistrationOfCustomFormElement.rst"
typo3-version: "14.2"
typo3-major: 14
type: "feature"
issue: 107058
forge: "https://forge.typo3.org/issues/107058"
tags: ["Backend", "ext:form"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #107058 - Simplify registration of a custom form element {#feature-107058-1769168658}

See [forge#107058](https://forge.typo3.org/issues/107058)

## Description {#description}

The registration of custom form elements in the TYPO3 Form Framework has
been simplified. Previously, registering a custom form
element required subscribing to the JavaScript event
`view/stage/abstract/render/template/perform` to render the element
in the Form Editor stage area.

Custom form elements can now be registered without
custom JavaScript code. The Form Editor automatically uses a generic
Web Component to render form elements in the stage area.

To use this simplified registration method, omit the
`formEditorPartials` configuration in your form element's YAML
definition. The Form Editor then automatically renders the element using
the built-in `<typo3-form-form-element-stage-item>` web component,
which provides:

-   Element type and identifier display
-   Element label with required indicator
-   Validator visualization
-   Support for select options (`SingleSelect`, `MultiSelect`,
    `RadioButton`, `Checkbox`)
-   Support for allowed MIME types (`FileUpload`, `ImageUpload`)
-   Element toolbar
-   Hidden state visualization

The generic rendering automatically extracts and displays relevant
information from the form element configuration without requiring a
custom template or JavaScript code.

## Impact {#impact}

Extension developers can now register custom form elements with minimal
configuration. By omitting the `formEditorPartials`
configuration, the Form Editor automatically renders the element using a
generic Web Component, eliminating the need for:

-   Custom Fluid templates in
    `Resources/Private/Backend/Partials/FormEditor/Stage/`
-   Custom JavaScript code subscribing to
    `view/stage/abstract/render/template/perform`
-   Manual element rendering logic

This significantly reduces the complexity and maintenance burden when
creating custom form elements that do not require special visualization
in the Form Editor.

For custom form elements that require specialized rendering or custom
interactions in the stage area, the `formEditorPartials`
configuration can still be used to provide custom Fluid templates, which
continue to work as before.

For a complete step-by-step tutorial on creating custom form elements,
see [Creating a Custom Form Element](https://docs.typo3.org/c/typo3/cms-form/main/en-us/I/HowTos/CustomFormElement/Index.html#howtos-custom-form-element).
