gn:act_addRow
- Description
- Creates new row in list typed widget or variable, with data from sources
- Action returns
- void
Action signatures
Inserts new row as the last element in the list
[gn:act_addRow]|[target;column{n};source{n}]
Parameter Description target
target where the row will be stored column{n}
column where the source value will be stored source{n}
source from which value for column will be taken
Example
@variable/newEmailDTVariable
- targetname, email
- column names@variable/supervisorFirstName, @variable/supervisorEmail
- source
- ⤷
[gn:act_addRow]|[@variable/newEmailDTVariable;name, email;@variable/supervisorFirstName, @variable/supervisorEmail]
- ⤷
Inserts new row at defined rowIndex
in the list
[gn:act_addRow]|[target,rowIndex;column{n};source{n}]
Parameter Description target
target where the row will be stored column{n}
column where the source value will be stored source{n}
source from which value for column will be taken rowIndex
optionalsource which represents the row index in target where new row will be stored
Example
@variable/newEmailDTVariable
- target@variable/rowIndex
- row indexname, email
- column names@variable/supervisorFirstName, @variable/supervisorEmail
- source
- ⤷
[gn:act_addRow]|[@variable/newEmailDTVariable, @variable/rowIndex;name, email;@variable/supervisorFirstName, @variable/supervisorEmail]
- ⤷