Difference between revisions of "Ssescape"
From SmartWiki
Lorena Ruiz (talk | contribs) 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 | + | '''IMPORTANT:''' This syntax will escape/ignore double quotes (") and remove html tags. |
<ssEscape>.....</ssEscape> | <ssEscape>.....</ssEscape> |
Latest revision as of 08: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
- When using template formulas to escape double quotes from a single line text field.
@level1.name@="<ssEscape>@level1.Proposal Title@</ssEscape>";
- When using template formulas to escape double quotes from a multiple lines text field.
@level1.description@="<ssEscape>@level1.Project Description.value@</ssEscape>";
- When using browser scripts to escape double quotes from a variable.
var name="<ssEscape>@name@</ssEscape>"; if(name=="") function goes here....
- When using Sslogic or visibility conditions to escape double quotes from a single line text field.
<!--@sslogic("<ssEscape>@name@</ssEscape>"!="")--> There's a project title with double quotes <!--@end-->