Difference between revisions of "Ssescape"

From SmartWiki
Jump to: navigation, search
m (Minor clarification)
 
Line 1: Line 1:
 
This syntax functions to "escape" double quotes on text fields. The purpose of this is to avoid breaking the code on the page when field values containing double quotes are referenced on [[Template_Formula|Template Formulas]], [[Visibility_Condition|Visibility Conditions]] and [[Browser_Script|Browser Scripts]].
 
This syntax functions to "escape" double quotes on text fields. The purpose of this is to avoid breaking the code on the page when field values containing double quotes are referenced on [[Template_Formula|Template Formulas]], [[Visibility_Condition|Visibility Conditions]] and [[Browser_Script|Browser Scripts]].
  
'''IMPORTANT:'''  This syntax will only escape double quotes (")
+
'''IMPORTANT:'''  This syntax will escape/ignore double quotes (") and remove html tags.
  
 
  <ssEscape>.....</ssEscape>
 
  <ssEscape>.....</ssEscape>

Latest revision as of 09:24, 19 July 2016

This syntax functions to "escape" double quotes on text fields. The purpose of this is to avoid breaking the code on the page when field values containing double quotes are referenced on Template Formulas, Visibility Conditions and Browser Scripts.

IMPORTANT: This syntax will escape/ignore double quotes (") and remove html tags.

<ssEscape>.....</ssEscape>

Examples

@level1.name@="<ssEscape>@level1.Proposal Title@</ssEscape>";
@level1.description@="<ssEscape>@level1.Project Description.value@</ssEscape>";
var name="<ssEscape>@name@</ssEscape>";
if(name=="")
  function goes here....
<!--@sslogic("<ssEscape>@name@</ssEscape>"!="")-->
   There's a project title with double quotes
<!--@end-->

See Also