PHPackages                             wwwision/form-multicolumnsection - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. wwwision/form-multicolumnsection

ActiveNeos-package[Templating &amp; Views](/categories/templating)

wwwision/form-multicolumnsection
================================

Flow package with a custom Flow Form Framework Form Element that renders Multi columns

1.2.0(10mo ago)112.9k↓40.5%3MITPHP

Since Aug 29Pushed 10mo ago1 watchersCompare

[ Source](https://github.com/bwaidelich/Wwwision.Form.MultiColumnSection)[ Packagist](https://packagist.org/packages/wwwision/form-multicolumnsection)[ RSS](/packages/wwwision-form-multicolumnsection/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (5)Dependencies (1)Versions (7)Used By (0)

Multi Column Form Element
=========================

[](#multi-column-form-element)

This package adds a new Form Element `Wwwision.Form.MultiColumnSection:TwoColumns`to the `default` preset that allows to render Multi-Column sections within Forms of the [Flow Form Framework](https://github.com/neos/form).

It includes:

- Form Framework Element definition in `Settings.yaml`, including the corresponding custom PHP implementation
- The Fusion &amp; Node Type definition required to make this work with the `neos/form-builder`
- A Fluid template that will be used when rendering the form with the default `FluidFormRenderer`
- A Fusion prototype that will be used when rendering the form with the `neos/form-fusionrenderer`

Usage
-----

[](#usage)

Install this package using GIT:

```
git clone https://github.com/bwaidelich/Wwwision.Form.MultiColumnSection.git Packages/Application/Wwwision.Form.MultiColumnSection

```

And make sure to rescan the installed packages so that it is properly installed:

```
./flow flow:package:rescan

```

**Note:** This package requires the `neos/form` package in version 4.0 or higher

### Usage in the Neos Form Builder

[](#usage-in-the-neos-form-builder)

In the Neos backend there's now a new Content Element type that can be added to node-based Forms:

[![Create Wizard](Documentation/Images/CreateWizard.png)](Documentation/Images/CreateWizard.png)

When inserted, child elements can be added to the `column1Elements` or `column2Elements` FormElementCollections.

### Usage from Fusion

[](#usage-from-fusion)

This Form Element can also be used from Fusion like this

```
prototype(Some.Package:SomeForm) < prototype(Neos.Form.Builder:Form) {
    presetName = 'somePreset'
    firstPage {
        elements {
            twoCols = Wwwision.Form.MultiColumnSection:TwoColumns.Definition {
                label = 'Name and Email'
                column1Elements {
                    name = Neos.Form.Builder:SingleLineText.Definition {
                        label = 'Name'
                    }
                }
                column2Elements {
                    email = Neos.Form.Builder:SingleLineText.Definition {
                        label = 'Email'
                        validators {
                            emailAddress = Neos.Form.Builder:EmailAddressValidator.Definition
                        }
                    }
                }
            }
        }
    }
}

```

### Usage in YAML Form definitions

[](#usage-in-yaml-form-definitions)

The structure of the YAML Form definition is strict, so it's not allowed to use custom keys like `column1Elements`. Instead the column assignment is done via a custom `renderingOption` "\_column":

```
type: 'Neos.Form:Form'
identifier: some-identifier
renderables:
    -
        type: 'Neos.Form:Page'
        identifier: page1
        renderables:
            -
                type: 'Wwwision.Form.MultiColumnSection:TwoColumns'
                identifier: two-columns
                label: 'Two Columns'
                renderables:
                    -
                        type: 'Neos.Form:SingleLineText'
                        identifier: name
                        renderingOptions:
                          _column: 1
                        label: "Name"
                    -
                        type: 'Neos.Form:SingleLineText'
                        identifier: email
                        renderingOptions:
                          _column: 2
                        label: "Email"
                        validators:
                            -
                                identifier: 'Neos.Flow:EmailAddress'
```

###  Health Score

44

—

FairBetter than 92% of packages

Maintenance54

Moderate activity, may be stable

Popularity28

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 60% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~718 days

Total

5

Last Release

313d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/307571?v=4)[Bastian Waidelich](/maintainers/bwaidelich)[@bwaidelich](https://github.com/bwaidelich)

---

Top Contributors

[![bwaidelich](https://avatars.githubusercontent.com/u/307571?v=4)](https://github.com/bwaidelich "bwaidelich (6 commits)")[![adrian-cerdeira](https://avatars.githubusercontent.com/u/43271236?v=4)](https://github.com/adrian-cerdeira "adrian-cerdeira (1 commits)")[![anianweber](https://avatars.githubusercontent.com/u/18150589?v=4)](https://github.com/anianweber "anianweber (1 commits)")[![dependabot-preview[bot]](https://avatars.githubusercontent.com/in/2141?v=4)](https://github.com/dependabot-preview[bot] "dependabot-preview[bot] (1 commits)")[![simonhir](https://avatars.githubusercontent.com/u/14137977?v=4)](https://github.com/simonhir "simonhir (1 commits)")

### Embed Badge

![Health badge](/badges/wwwision-form-multicolumnsection/health.svg)

```
[![Health](https://phpackages.com/badges/wwwision-form-multicolumnsection/health.svg)](https://phpackages.com/packages/wwwision-form-multicolumnsection)
```

###  Alternatives

[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[whitecube/nova-flexible-content

Flexible Content &amp; Repeater Fields for Laravel Nova.

8053.0M25](/packages/whitecube-nova-flexible-content)[mopa/bootstrap-bundle

Easy integration of twitters bootstrap into symfony2

7042.9M33](/packages/mopa-bootstrap-bundle)[limenius/react-bundle

Client and Server-side react rendering in a Symfony Bundle

3871.2M](/packages/limenius-react-bundle)[nicmart/string-template

StringTemplate is a very simple string template engine for php. I've written it to have a thing like sprintf, but with named and nested substutions.

2101.7M30](/packages/nicmart-string-template)[symfony/ux-icons

Renders local and remote SVG icons in your Twig templates.

555.8M69](/packages/symfony-ux-icons)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
