Difference between revisions of "Calendar Fields"

From SmartWiki
Jump to: navigation, search
 
(5 intermediate revisions by one other user not shown)
Line 1: Line 1:
[[UTA]] Calendar Template now supports [[Web Page View Field|web page view]] type [[Variables|variables]] and logic.
+
The '''Calendar Fields''' section on the [[UTA Settings - Miscellaneous]] page allows you to configure the display of activities on the [[UTA]] Calendar.
  
  
For example:
+
The field accepts [[Web Page View Field Variables]] and logic.
You can use the following syntax on the "Calendar Fields" section of Application Configuration:
+
 
 +
'''Examples:'''
 +
 
 
   
 
   
 +
This will only display the field with field ID 55222 for “Contract” type activities on the Project calendar:
 
<pre>
 
<pre>
 
&lt;!--@sslogic('@type@'='Contract')-->@#55222#@
 
&lt;!--@sslogic('@type@'='Contract')-->@#55222#@
Line 10: Line 13:
 
&lt;!--@end-->
 
&lt;!--@end-->
 
</pre>
 
</pre>
 
This will only display the field with field ID 55222 for “Contract” type activities on the Project calendar
 
 
  
  
 +
This will display the type, owner name and start/end time if the status is schedules or re-scheduled.
 +
<pre>
 +
&lt;!--@sslogic('@statusname@' in ('scheduled','re-scheduled'))-->@type@
 +
  @parent.owner.fullname@
 +
  @starttime@-@endtime@
 +
&lt;!--@end-->
 +
</pre>
  
[[Category:Enhancements]][[Category:System Management]][[Category:Universal Tracking Application]]
+
[[Category:Universal Tracking Application]][[Category:Calendars]][[Category:UTA Settings]]

Latest revision as of 08:57, 23 July 2013

The Calendar Fields section on the UTA Settings - Miscellaneous page allows you to configure the display of activities on the UTA Calendar.


The field accepts Web Page View Field Variables and logic.

Examples:


This will only display the field with field ID 55222 for “Contract” type activities on the Project calendar:

<!--@sslogic('@type@'='Contract')-->@#55222#@

<!--@end-->


This will display the type, owner name and start/end time if the status is schedules or re-scheduled.

<!--@sslogic('@statusname@' in ('scheduled','re-scheduled'))-->@type@
   @parent.owner.fullname@
   @starttime@-@endtime@
<!--@end-->