Hidden Field
- Last UpdatedJun 25, 2024
- 1 minute read
Use scripts to set and get values for the properties of the Hidden Field control.
Basic
|
Property |
Scripting Supported |
Example |
|---|---|---|
|
Name |
Yes Readable |
To get the value of the property control.findById("ID").tagName; |
|
XML Node |
Yes Readable |
To get the value of the property control.findById("ID").xmlNodeBoundTo; |
|
Default Value |
Yes Readable |
To get the value of the property control.findById("ID").defaultValue; |
Advanced
|
Property |
Scripting Supported |
Example |
|---|---|---|
|
On Data Change |
Yes |
For more information, see scripting guidelines for On Data Change property. |
|
ID |
No |
Not Applicable |
|
Include in Summary |
No |
Not Applicable |
Scripts
|
Property |
Scripting Supported |
Example |
|---|---|---|
|
Default Value |
Yes |
return "Default value for the control"; Note: The Value script takes precedence over the Default Value script. |
|
Value |
Yes |
return "Value for the control"; |