setAttribute
Last updated
Last updated
Stores value into an attribute of an object variable in the application's local variable pool.
Name | Description | Input Type | Default | Options | Required |
---|---|---|---|---|---|
Description | Output Type |
---|---|
Key | Description | Output Type |
---|---|---|
In this example, we will set the value of an object variable's attribute and check whether the variable attribute has been set successfully in the console.
Drag the function Variable.setAttribute
into the event flow window.
Create a variable called vObject
with the attribute name
that has value Johnny
.
This will create a global variable called vObject
(if it doesn't exist already) with attribute name
containing the value Johnny
that can be accessed by other components or on other pages of your app.
The value of the attribute name
of the global variable vObject
can be accessed by using the Variable.getAttribute
.
Using the above flow will display the value Johnny
in the browser console.
See also
Functions
name
The variable's identifier containing the object.
Text
-
-
Yes
attribute
The attribute name of the object variable to set value to.
Text
-
-
Yes
value
The value to be set for this variable. Can be null.
Any
-
-
No
Returns the formatted information.
Object
success
Boolean value to denote whether the function was executed successfully.
Text
message
The message to print.
Text
data
Any additional message or data to print.
Text