Template:PropVals/Group/NextPart/doc

From Salem Wiki
< Template:PropVals‎ | Group‎ | NextPart
Revision as of 19:17, 23 June 2012 by ©TriMoon™ (talk | contribs) (→‎Examples: adding 1st-call examples)
Jump to: navigation, search

Description

This template is used, as a helper-template inside {{PropVals/Group}}, to output a grouped-record that starts with the heading-field followed by records, with their heading-field removed, that have the same heading-field as the previous record.
These grouped-records begin with the group-separator followed by the heading-field, when the heading-field of the current-record differs from the one in the previous-record.
The heading-field in the output will be prepended with "heading=" to allow {{PropVals/List}} to recognize it as the group-heading tobe used.
It uses {{PropVals/Group/heading}} to extract the heading-field of the provided records.

Syntax

Type the below code somewhere inside your code:
{{PropVals/Group/NextPart
|preval=<previous record>
|val=<current record>
|sep={{{sep|;}}}
|grpsep={{{grpsep|/\}}}
}}

Examples

  1. {{PropVals/Group/NextPart|val=Objectname;Amount|sep={{{sep|;}}}|grpsep={{{grpsep|/\}}}}}
    gives:
    Objectname;Amount
  2. {{PropVals/Group/NextPart|val=Objectname;Amount;Groupheading|sep={{{sep|;}}}|grpsep={{{grpsep|/\}}}}}
    gives:
    heading=Groupheading|Objectname;Amount
  3. {{PropVals/Group/NextPart|preval=Objectname;Amount;Groupheading|val=Objectname;Amount;Groupheading|sep={{{sep|;}}}|grpsep={{{grpsep|/\}}}}}
    gives:
    |Objectname;Amount
  4. {{PropVals/Group/NextPart|preval=Objectname;Amount;Grouphead|val=Objectname;Amount;Groupheading|sep={{{sep|;}}}|grpsep={{{grpsep|/\}}}}}
    gives:
    /\heading=Groupheading|Objectname;Amount