formData.name
(FintechOS Studio 20.1.1 and later)
Returns the ID of the form's HTML element.
Return Value
Returns a string containing the ID of the form's HTML element.
Examples
In this example, we use formData.name to get the form's HTML element ID and set its background color to #FF91AF.
Copy
document.getElementById(formData.name).style.backgroundColor = '#FF91AF';