TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,32 @@
.. include:: /Includes.rst.txt
.. _feature-82704:
============================================================================
Feature: #82704 - Add readonly and required attributes to TextareaViewHelper
============================================================================
See :issue:`82704`
Description
===========
The view helper `f:form.textarea` now supports the attributes `readonly` and `required`.
Impact
======
The attributes `readonly` and `required` may be set by using the `f:form.textarea` view helper.
Example:
.. code-block:: html
<!-- Set required attribute -->
<f:form.textarea name="foobar" required="1" />
<!-- Set readonly attribute -->
<f:form.textarea name="foobar" readonly="1" />
.. index:: Fluid