ventusforge/neos-form-navigation

Adds navigation elements to Neos Form

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Language:HTML

Type:neos-plugin

pkg:composer/ventusforge/neos-form-navigation

0.1.0 2026-02-19 10:25 UTC

This package is auto-updated.

Last update: 2026-02-19 10:29:22 UTC


README

Adds navigation buttons to the form.

This package includes Nodes for the Neos FormBuilder too.

Hide the default navigation in Form-Builder

Add the mixin to the form-builder:

'Neos.Form.Builder:NodeBasedForm':
  superTypes:
    'VentusForge.Neos.FormNavigation:Mixin.HideNavigation': true

Update the form template (Neos.Form:Form) to hide the default navigation:

<f:if condition="{form.renderingOptions.showNavigation}">
      <f:render partial="Neos.Form:Form/Navigation" arguments="{form: form}" />
</f:if>

Set the default settings in the form definition:

Neos:
  Form:
    presets:
      default:
        formElementTypes:
          'Neos.Form:Form':
            renderingOptions:
              showNavigation: true