Form.radio ViewHelper <f:form.radio>

ViewHelper which creates a simple radio button <input type="radio">.

Go to the source code of this ViewHelper: Form\RadioViewHelper.php (GitHub).

Basic yes/no radio buttons tied to an action argument

The following shows two radio buttons, the one labeled "No" is preselected.

packages/my_extension/Resources/Private/Templates/Comment/Newsletter.html
<f:form action="orderNewsletter" method="post">
    <div>
        <f:form.checkbox name="orderNewsletter" id="orderNewsletter" value="yes" />
        <label for="orderNewsletter">Order newsletter</label>
    </div>
    <div>
        <f:form.submit value="Submit" />
    </div>
</f:form>
Copied!

The controller action can then look like this:

packages/my_extension/Classes/Controller/NewsletterController.php
<?php

declare(strict_types=1);

namespace MyVendor\MyExtension\Controller;

use Psr\Http\Message\ResponseInterface;
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;

class NewsletterController extends ActionController
{
    public function orderNewsletterAction(
        // If the checkbox is not checked, no argument is provided.
        // Default to false
        bool $orderNewsletter = false,
    ): ResponseInterface {
        if ($orderNewsletter) {
            // TODO: Newsletter ordering
        }
        return $this->htmlResponse();
    }
}
Copied!

Property mapping - Radio buttons bound to a model

The radio buttons from this example look the same as those from the previous example, however an object of type User is now provided as parameter for the Extbase action.

packages/my_extension/Resources/Private/Templates/Newsletter/SomeForm.html
<f:form action="orderNewsletter" method="post" object="user" objectName="user">
    <div>
        <f:form.checkbox property="orderNewsletter" id="orderNewsletter" value="yes" />
        <label for="orderNewsletter">Order newsletter</label>
    </div>
    <div>
        <f:form.submit value="Submit" />
    </div>
</f:form>
Copied!

Then the controller action can look like this:

packages/my_extension/Classes/Controller/NewsletterController.php
<?php

declare(strict_types=1);

namespace MyVendor\MyExtension\Controller;

use MyVendor\MyExtension\Domain\Model\User;
use Psr\Http\Message\ResponseInterface;
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;

class NewsletterController extends ActionController
{
    public function orderNewsletterAction(
        User $user,
    ): ResponseInterface {
        if ($user->isOrderNewsletter()) {
            // TODO: Newsletter ordering
        }
        return $this->htmlResponse();
    }
}
Copied!
packages/my_extension/Classes/Domain/Model/User.php
<?php

declare(strict_types=1);

namespace MyVendor\MyExtension\Domain\Model;

use TYPO3\CMS\Extbase\DomainObject\AbstractEntity;

class User extends AbstractEntity
{
    protected bool $orderNewsletter = false;

    public function isOrderNewsletter(): bool
    {
        return $this->orderNewsletter;
    }

    public function setOrderNewsletter(bool $orderNewsletter): void
    {
        $this->orderNewsletter = $orderNewsletter;
    }

}
Copied!

Radio buttons with options from an array or query result

The form radio ViewHelper does not supply an argument that creates it from an array as you might have seen for the form select ViewHelper (Select field for selecting (persisted) models).

You can however just use the For ViewHelper <f:for> to iterate your items and display them one by one. If you use the objects uid for the key, the radio button can be matched to the model in use.

The Fluid template can be left unchanged even though we are dealing with a different data source:

packages/my_extension/Resources/Private/Templates/User/PaymentForm.html
<f:form action="selectPayment">
    <f:form.select name="payment" options="{paymentOptions}" value="{myPayment}" />
    <f:form.submit value="Submit"/>
</f:form>
Copied!
packages/my_extension/Classes/Domain/Model/PaymentMethod.php
<?php

declare(strict_types=1);

namespace MyVendor\MyExtension\Domain\Model;

use TYPO3\CMS\Extbase\DomainObject\AbstractEntity;

class PaymentMethod extends AbstractEntity implements \Stringable
{
    protected string $title;
    protected string $paymentIdentifier;

    // Getters and setters

    // If the model implement the __toString() method
    // The result of that method is displayed in the select form
    public function __toString(): string
    {
        return $this->title;
    }
}
Copied!

In the controller we can get all payment methods from the Repository now and pass it to the view as variable:

packages/my_extension/Classes/Controller/UserController.php
<?php

declare(strict_types=1);

namespace MyVendor\MyExtension\Controller;

use Psr\Http\Message\ResponseInterface;
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;

class UserController extends ActionController
{
    public function __construct(
        protected readonly PaymentMethodRepository $paymentMethodRepository,
    ) {}

    public function paymentFormAction(): ResponseInterface
    {
        $paymentOptions = $this->paymentMethodRepository->findAll();
        $this->view->assign('paymentOptions', $paymentOptions);
        $this->view->assign('myPayment', 'visa');
        return $this->htmlResponse();
    }
    public function selectPaymentAction(PaymentMethod $payment): ResponseInterface
    {
        // do something
        return $this->redirect('show');
    }
}
Copied!

Multiple radio button groups

Only one radio button per group can be checked at a time. Each group has the same name or property.

Arguments of the form radio ViewHelper

additionalAttributes

additionalAttributes
Type
array
Additional tag attributes. They will be added directly to the resulting HTML tag.

aria

aria
Type
array
Additional aria-* attributes. They will each be added with a "aria-" prefix.

checked

checked
Type
bool
Specifies that the input element should be preselected

data

data
Type
array
Additional data-* attributes. They will each be added with a "data-" prefix.

errorClass

errorClass
Type
string
Default
'f3-form-error'
CSS class to set if there are errors for this ViewHelper

name

name
Type
string
Name of input tag

property

property
Type
string
Name of Object Property. If used in conjunction with <f:form object="...">, the "name" property will be ignored, while "value" can be used to specify a default field value instead of the object property value.

value

value
Type
string
Required
1
Value of input tag. Required for radio buttons