Function Tokens

Function Tokens provide you the ability to execute certain XMod Pro-supplied functions. Currently there is only one function: Join. As other functions are added, they will be added to this topic.

Syntax

[[FunctionName(parameter list)]]
 

Remarks

 

 

Back to top

Example

<xmod:template>
  ...
  <ItemTemplate>
    [[Localize:Company]] [[CompanyName]] <br />
    [[Localize:Address]] [[Address]]
    <xmod:DeleteButton Text='[[Join("Delete {0}", [[CompanyName]])]]'
      OnClientClick='[[Join("return confirm(""Really Delete {0}?"")", [[CompanyName]])]]'>
      ...
    </xmod:DeeleteButton>
  </ItemTemplate>
  ...
</xmod:template>
Back to top