Entity Advanced Templating
The template
parameter in the render()
function of the entity Service is an ExtensionML string used to render entities. To render a static object or an iFrame, you can use advanced templating.
For a full ExtensionML reference, continue here:
Message Format - ExtensionMLTemplate and Data
You can create a reusable template
that leverages the values in the data
object for the specific object. When using the data
for these attributes, the template uses the id
attribute on the tag to specify which member of the data object holds these attributes.
For example, the template and data below could be used to display a link within a Symphony message:
Flow Control Tags
Use the following flow control tags to support entities that have conditional logic or recursive data:
Tag | Description |
| Use this tag to conditionally use the enclosing template. This tag must include an |
| Use this tag within an iteration to conditionally use the enclosing template. If the current iteration is the last item in the iterated list, the enclosing template will be used. |
| Use this tag within an iteration to conditionally use the enclosing template. If the current iteration is not last item in the iterated list, the enclosing template will be used. This is useful to add commas between items in a list, without adding one to the last item. |
| Use this tag to loop through the items in an array. The template between the opening and closing |
Interactivity Tags
Use the following tags to have interactivity on messages by implementing methods that are called to execute business logic:
Tag | Description |
| Use this tag to enable clicks on entities. For more information on how to use the |
Using Actions
The following steps show examples on how to use actions.
Add the
<action>
tag to an entity template.
The data field of the entity must have objects that match the actions ids. For these objects, we can provide an icon, a label and a service name for the action.
Implement an action method for the service of the entity renderer. This method will be called once the
<action>
tag is clicked.
Last updated