Updated for Version 4.18
...
User Information:
Name:
Full Name: <<[loggedInUser.displayName]>>
Username: <<[loggedInUser.login]>>
Email: <<[loggedInUser.primaryEmail]>>
Company: <<[loggedInUser.company]>>
Address: <<[loggedInUser.addresses.FirstOrDefault(a => a.addressType.Name =="home")]>> This is not yet available.
...
<<var [Location=SectionControls.FirstOrDefault(sc=>sc.tag ==”LCTN”)]>> |
Reference Variable Example
Coordinates: <<[Location.values.mapCoord]>> |
Address
Reference Variable Example
...
The following example prints all values of the short text control. The tag for the control in this example is ”Short” while the tag for the advanced table itself is “ADV_TABLE_CONTROL”. The short text value is called on with “<<[shortValue]>>”. <<var[advancedTable=SectionControls.FirstOrDefault(sc=>sc.tag=="ADV_TABLE_CONTROL")]>> <<var[advancedTableRows =advancedTable.rows]>> <<foreach [row in advancedTableRows]>><<var [shortColumn=row.columns.FirstOrDefault(c=>c.tag ==”SHORT”)]>><<var[shortValue =shortColumn== null || shortColumn.values ==null?””:shortColumn.values.controlValue]>> <<[shortValue]>> <</foreach>> |
DataGrid Summary Data
This code iterates through a collection of rows called
|
Contact
Establish Variable Example
...