<tml:groupchange>

Description:
To be used within tml:foreach. Controls the value a certain term gets in an iteration. When the value changes within an iteration, the content of the tag will be displayed in this loop. Useful for group change functions within display of a list.
Attributes:
General WebTML attributes are hidden -> show general attributes
Name Value(s) Version Usage

Details:
Tag-Infos:
  • currentvalue: Der aktuelle Wert des Gruppenwechselausdrucks
Examples:

    <tml:collection>

      <tml:query id="formulaquery" type="formula">_Type = "Articel" </tml:query>
      <tml:foreach sortorder="descending" sortexpression="_date">
        <tml:groupchange id="groupchange" expression="_date">
          <b><tml:taginfo sourcetag="groupchange" name="currentValue" /></b>
        </tml:groupchange>

        <tml:metadata name="Title"/>
        <br>
        <tml:item name="_ShortStory"/>
      </tml:foreach>
    </tml:collection>