ProcessLevelLocator
|
||
ProcessLevelLocator Replace Tag returns information about the current process level.
Parameters of the ProcessLevelLocator Replace Tag
Parameter |
Description |
---|---|
Template |
The template file used to combine a new process level item to the list of old ones. Default is "<#Parameter id="ParentLevel"> <#Parameter id="LevelSeparator"> <#Parameter id="ChildLevels">". |
LevelTemplate |
The template used to format single item in the locator. Default is "<a href="<#Parameter Id="URL">"><#Parameter Id="Label"></a>". |
BranchTemplate |
The template used to format a parent process level that has multiple alternatives (only the first one is given as parameters to this template) because of the process level instantiation. Default is "<a href="<#Parameter Id="URL">"><#Parameter Id="Label">...</a>". |
LevelSeparator |
The separator used to separate levels when process information is displayed. The default value is "-". |
EndSeparator |
The separator used for the last level when process information is displayed. The default value is ":". |
All other parameters will be forwarded to the generated views, and can be accessed with the Include Replace Tag, described in chapter Include Replace Tag. |
For example, with the Basic layout, subpsdet.tpl, using the default settings:
<#ProcessLevelLocator> <#ObjectProperty id="name">
produces: [Untitled] - sub5 - sub7 : sub8
However, using the custom values:
<#ProcessLevelLocator levelseparator="->" endseparator="::"> <#ObjectProperty id="name">
produces: [Untitled] -> sub5 -> sub7 :: sub8