From 08f718881336286c304dd6936b138fd75751a057 Mon Sep 17 00:00:00 2001
From: Tomita Militaru <tom@workwithtom.ro>
Date: Tue, 5 Nov 2019 23:37:49 +0100
Subject: [PATCH] [FEATURE] Add additionalAttributes to formDefinitions
 renderingOptions
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Resolves: #89551
Releases: master
Change-Id: I3f88c949564c9726ab84f22d3e5f593858faa464
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/62201
Tested-by: TYPO3com <noreply@typo3.com>
Tested-by: Christian Eßl <indy.essl@gmail.com>
Tested-by: Björn Jacob <bjoern.jacob@tritum.de>
Tested-by: Susanne Moog <look@susi.dev>
Reviewed-by: Tobi Kretschmann <tobi@tobishome.de>
Reviewed-by: Henning Liebe <h.liebe@neusta.de>
Reviewed-by: Felix P. <f.pachowsky@neusta.de>
Reviewed-by: Sascha Rademacher <sascha.rademacher+typo3@gmail.com>
Reviewed-by: Steffen Frese <steffenf14@gmail.com>
Reviewed-by: Christian Eßl <indy.essl@gmail.com>
Reviewed-by: Björn Jacob <bjoern.jacob@tritum.de>
Reviewed-by: Susanne Moog <look@susi.dev>
---
 ...idAdditionalAttributesToTheFormElement.rst | 31 +++++++++++++++++++
 .../Private/Frontend/Templates/Form.html      |  1 +
 2 files changed, 32 insertions(+)
 create mode 100644 typo3/sysext/core/Documentation/Changelog/master/Feature-89551-AddFluidAdditionalAttributesToTheFormElement.rst

diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-89551-AddFluidAdditionalAttributesToTheFormElement.rst b/typo3/sysext/core/Documentation/Changelog/master/Feature-89551-AddFluidAdditionalAttributesToTheFormElement.rst
new file mode 100644
index 000000000000..b442a88372b0
--- /dev/null
+++ b/typo3/sysext/core/Documentation/Changelog/master/Feature-89551-AddFluidAdditionalAttributesToTheFormElement.rst
@@ -0,0 +1,31 @@
+.. include:: ../../Includes.txt
+
+===================================================================
+Feature: #89551 - Add fluidAdditionalAttributes to the form element
+===================================================================
+
+See :issue:`89551`
+
+Description
+===========
+
+Allows to configure fluidAdditionalAttributes within form element:
+`TYPO3:
+  CMS:
+    Form:
+      prototypes:
+        standard:
+          formElementsDefinition:
+            Form:
+              renderingOptions:
+                fluidAdditionalAttributes:
+                  novalidate: 'novalidate'
+
+
+Impact
+======
+
+For projects using it's own Form template, the following attribute can be set on viewhelper formvh:form as attribute:
+`additionalAttributes="{formvh:translateElementProperty(element: form, property: 'fluidAdditionalAttributes')}"`
+
+.. index:: Fluid, ext:form
diff --git a/typo3/sysext/form/Resources/Private/Frontend/Templates/Form.html b/typo3/sysext/form/Resources/Private/Frontend/Templates/Form.html
index e9c7fc402649..4e84eef8092c 100644
--- a/typo3/sysext/form/Resources/Private/Frontend/Templates/Form.html
+++ b/typo3/sysext/form/Resources/Private/Frontend/Templates/Form.html
@@ -10,6 +10,7 @@
                 addQueryString="{form.renderingOptions.addQueryString}"
                 argumentsToBeExcludedFromQueryString="{form.renderingOptions.argumentsToBeExcludedFromQueryString}"
                 additionalParams="{form.renderingOptions.additionalParams}"
+                additionalAttributes="{formvh:translateElementProperty(element: form, property: 'fluidAdditionalAttributes')}"
         >
             <f:render partial="{form.currentPage.templateName}" arguments="{page: form.currentPage}" />
             <div class="actions">
-- 
GitLab