Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Problem

A presentation setting has been defined and a trigger in the setting exist. But the settings are not applied and page is messed up.

Background

Triggers on presentation settings must come directly after the opening tag. No comments, other tags or even white spaces shall exist between the opening tag and the trigger.

...

For a general description on triggers see https://signifikant.atlassian.net/wiki/spaces/ASKB/pages/791609345/Technical+documentation+-+Presentation+settings+in+version+5#Trigger.

Example

First, the correct one. Trigger first and the name. Name get a small H5.

...

Code Block
languagexml
<Presentation template="index">
  <!-- COMMENT -->
  <Trigger label="start"/>
  <Name tag="h5"/>
</Presentation>                                  

Solution

Do not put anything between opening <Presentation> tag and the <Trigger> tag.