.. include:: ../Includes.txt .. _faq: === FAQ === .. _faq-override-frontend-templates: How do I override the frontend templates? ========================================= There are 2 possible ways to override the frontend templates. Globally extend the fluid search paths -------------------------------------- Since EXT:form mainly uses YAML as configuration language you need to register your own additional YAML files. Let us assume you are using a sitepackage ``EXT:my_site_package`` which contains your whole frontend integration. EXT:my_site_package/Configuration/TypoScript/setup.txt ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ First of all, register a new EXT:form configuration for the frontend via TypoScript. .. code-block:: typoscript plugin.tx_form { settings { yamlConfigurations { # register your own additional configuration # choose a number higher than 30 (below is reserved) 100 = EXT:my_site_package/Configuration/Yaml/CustomFormSetup.yaml } } } EXT:my_site_package/Configuration/Yaml/CustomFormSetup.yaml ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Next, define the additional fluid template search paths via YAML. .. code-block:: yaml TYPO3: CMS: Form: prototypes: standard: formElementsDefinition: Form: renderingOptions: templateRootPaths: 20: 'EXT:my_site_package/Resources/Private/Form/Frontend/Templates/' partialRootPaths: 20: 'EXT:my_site_package/Resources/Private/Form/Frontend/Partials/' layoutRootPaths: 20: 'EXT:my_site_package/Resources/Private/Form/Frontend/Layouts/' .. note:: The preview within the form editor (backend module) uses the frontend templates as well. If you want the preview to show your customized templates, register the new paths for the backend module as well. EXT:my_site_package/ext_typoscript_setup.txt ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Register your EXT:form configuration for the backend via TypoScript. Read the :ref:`chapter ` to learn why we recommend using the concept behind ``ext_typoscript_setup.txt``. .. code-block:: typoscript module.tx_form { settings { yamlConfigurations { 100 = EXT:my_site_package/Configuration/Yaml/CustomFormSetup.yaml } } } .. _faq-migrate-from-v7: How do I migrate from EXT:form v7? ================================== The old form extension (used in TYPO3 v7, which is compatible to TYPO3 v6) was moved into an own extension called ``form_legacy``. This extension can be found within the official `TER `_. When upgrading to TYPO3 v8 an upgrade wizard will tell you if form_legacy is still needed. .. _faq-frontend-validation: Is there a frontend validation? =============================== Yes, an HTML 5 based frontend validation is implemented. Nevertheless, there is no JavaScript validation. This has to be integrated manually. Reliable and maintained projects are `Parsley `_ and `jQuery Validation `_. .. _faq-localize-client-side-validations: How do I localize the client side validations in the frontend? ============================================================== The displayed validation message is a browser specific text. The output is not generated by TYPO3 and therefore you cannot change it easily. Nevertheless, there is a JavaScript solution for changing the validation message. See `Stack Overflow `_ for more information. .. _faq-date-picker: How does the date picker work? ============================== EXT:form ships a datepicker form element. To unfold its full potential you should add jquery JavaScript files and jqueryUi JavaScript and CSS files to your frontend. .. _faq-user-registration: Is it possible to build a frontend user registration with EXT:form? =================================================================== Possible, yes. But we are not aware of an integration. .. _faq-export-module: Is there some kind of export module for saved forms? ==================================================== Currently, there are no plans to implement such a feature. There are huge concerns regarding the data privacy when it comes to storing user data in your TYPO3 database permanently. .. _faq-honeypt-session: The honeypot does not work with static site caching. What can I do? =================================================================== If you want to use a static site caching - for example using the staticfilecache extension - you should disable the automatic inclusion of the honeypot. Read more :ref:`here.formelementsdefinition.form.renderingoptions.honeypot.enable>`. .. _faq-form-element-default-value: How do I set a default value for my form element? ================================================= Most of the form elements support setting a default value (do not mix this up with the placeholder attribute). For a text field or a textarea, this is quite trivial. A little bit more thrilling is the handling for select and multi select form elements. Those special elements support - beside the :yaml:`defaultValue` - a :yaml:`prependOptionValue` setting. The :yaml:`defaultValue` allows you to select a specific option as default. This option will be pre-selected as soon as the form is loaded. In contrast, the :yaml:`prependOptionValue` allows you to define a string which will be shown as the first select-option. If both settings exist, the :yaml:`defaultValue` is prioritized. Learn more :ref:`here.formelementsdefinition.\.defaultValue>` and see the forge issue `#82422 `_.