0
edits
Changes
→To display a list of Activities (Level 2 or 3), Notes, Contacts or Companies
</pre>
::''Note: This syntax is for "Public (Default)" notes only, not custom note types.
==How to display level three activities at level one in the Web Page View==
When displaying a list of '''Level 2''' activities using the [ # (?object=object;orderby=field) # ] processor, the corresponding '''Level 3''' activities can now be displayed under each of the parent '''Level 2''' activities by using [ @ (?object=object;orderby=field) @ ].
This new feature allows level one web page fields to display level 3 items.
This a type syntax for displaying level 2 items.
<pre>
<table border=1>
[#(?object=activity;orderby=startdate)
<tr><td colspan=2>~subject~</td><td>~location~</td><td>~startdate~</td></tr>
#]
</table>
</pre>
This is the syntax showing level 3 items inside level 2 items.
<pre>
<table border=1>
[#(?object=activity;orderby=startdate)
<tr><td colspan=2>~subject~</td><td>~location~</td><td>~startdate~</td></tr>
<tr>
<td>
<table bgcolor="00FFFF">
[@(?object=activity;orderby=startdate)<tr>
<td>~subject~</td><td>~location~</td><td>~startdate~</td>
</tr>@]
</table>
</td>
</tr>
#]
</table>
</pre>
=Date/Time Variables=