PHP 7.3 reached end of support in December 2021 and Adobe Commerce 2.3.x reaches end of support in September 2022. You may want to consider planning your upgrade now to Adobe Commerce 2.4.x and PHP 7.4.x to help maintain PCI compliance.
Hidden component
The Hidden component is a form element that implements the HTML <input type="hidden">
field.
Configuration options
Option | Description | Type | Default |
---|---|---|---|
component |
The path to the component’s JS constructor in terms of RequireJS. | String | Magento_Ui/js/form/element/abstract |
template |
The path to the component’s .html template. |
String | ui/form/element/hidden |
Source files
Extends UiElement
:
- app/code/Magento/Ui/view/base/web/js/form/element/abstract.js
- app/code/Magento/Ui/view/base/web/templates/form/element/hidden.html
Examples
Integrate the Hidden component with the Form component
This example integrates the Hidden component with the Form component.
1
2
3
4
5
6
7
8
9
10
11
<form>
...
<fieldset>
...
<hidden name="hidden_example">
<settings>
<value>hidden value</value>
</settings>
</hidden>
</fieldset>
</form>