setAttribute
Description
Stores value into an attribute of an object variable in the application's local variable pool.
Input / Parameter
Name | Description | Input Type | Default | Options | Required |
---|---|---|---|---|---|
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 |
Output
Description | Output Type |
---|---|
Returns the formatted information. | Object |
Object
Key | Description | Output Type |
---|---|---|
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 |
Example
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.
Steps
Drag the function
Variable.setAttribute
into the event flow window.Create a variable called
vObject
with the attributename
that has valueJohnny
.This will create a global variable called
vObject
(if it doesn't exist already) with attributename
containing the valueJohnny
that can be accessed by other components or on other pages of your app.
Result
The value of the attribute
name
of the global variablevObject
can be accessed by using theVariable.getAttribute
.Using the above flow will display the value
Johnny
in the browser console.
Links
Related Information
See also
Functions
Last updated