---
title: "Feature: #64190 - Inline rendering for FormEngine Checkbox Element"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-64190"
source: "Changelog/7.1/Feature-64190-FormEngineCheckboxElement.rst"
typo3-version: "7.1"
typo3-major: 7
type: "feature"
issue: 64190
forge: "https://forge.typo3.org/issues/64190"
tags: ["TCA", "Backend"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #64190 - Inline rendering for FormEngine Checkbox Element {#feature-64190}

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

## Description {#description}

The checkbox setting `inline` for cols can be used to render the checkboxes
directly next to each other to reduce the amount of used space.

Example Configuration:

```
'weekdays' => array(
	'label' => 'Weekdays',
	'config' => array(
		'type' => 'check',
		'items' => array(
			array('Mo', ''),
			array('Tu', ''),
			array('We', ''),
			array('Th', ''),
			array('Fr', ''),
			array('Sa', ''),
			array('Su', ''),
		),
		'cols' => 'inline',
	),
),

```

## Impact {#impact}

Checkboxes will be placed directly next to each other to reduce the amount of used space.
