Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Optimized note Asset in Picture only for PP
Table of Contents
minLevel1
maxLevel6
include
outlinefalse
indent
styledefault
exclude
typelist
class
printabletrue

...

Purpose and use

This document function can be used to link content in order to integrate it into the document.

...

There are no further attributes. The dynamisation of content and data is made possible in the code element with JavaScript and the software's own functions. Code (german). https://primesoft-group.atlassian.net/wiki/x/DgC7Fw

Code Block
<FieldsConfiguration>
  <Fields>
  
    <!-- FormattedText get as global translation -->
    <FormattedText Name="EnclosuresTitle">
      <Code>$.translations.getFormattedText("FormattedTexts.EnclosuresTitle")</Code>
    </FormattedText>
    
    <!-- FormattedText Get as snippet -->
    <FormattedText Name="SimpleSnippet">
      <Code>$.snippets.getFormattedText("FormattedTexts.SimpleSnippet")</Code>
    </FormattedText>
    
  </Fields>
</FieldsConfiguration>

...

There are no other attributes. The insertion of WordContent is made possible in the code element with JavaScript and the software's own functions. Code (german). https://primesoft-group.atlassian.net/wiki/x/DgC7Fw

...

Date

Code Block
languagexml
<FieldsConfiguration>
  <Fields>
    <Date Name="CreateDate" Format="yyyy-MM-dd">
      <Code>$("Forms.Date").Value</Code>
    </Date>
  </Fields>
</FieldsConfiguration>

...

Code Block
languagexml
<FieldsConfiguration>
  <Fields>
    <Picture Name="PartnerLogo" Asset="\\fileshare\PartnerLogo.png" />>
      <Code>$("Profile.Org.PartnerLogo")</Code>
    </Picture>
  </Fields>
</FieldsConfiguration>

...

Attribute name

Description

Asset
(optional)

Specification of the drive path to the image. It must be ensured that every user machine can access the image.Alternatively, an image can be filled with user information via the Code tagan asset in an Image Gallery, only available in PowerPoint:
<Picture Name="SignerImageMountains" ><Code>$("Profile.User.Sign")</Code></Picture>Asset="Images/General/Mountains.jpg" />

Note

Although the Asset attribute is shown in the other template types, it cannot be used.

...

GlobalFields

The GlobalFields element can be used to retrieve a globally stored Field.

...