Difference between revisions of "Ssescape"
From SmartWiki
(uotes) |
|||
Line 1: | Line 1: | ||
− | This syntax | + | This syntax allows to escape double quotes on text fields to avoid breaking when they 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 only escape double quotes (") |
<ssEscape>.....</ssEscape> | <ssEscape>.....</ssEscape> |
Revision as of 14:45, 25 June 2013
This syntax allows to escape double quotes on text fields to avoid breaking when they are referenced on Template Formulas, Visibility Conditions and Browser Scripts.
IMPORTANT: This syntax will only escape double quotes (")
<ssEscape>.....</ssEscape>
Examples
- When using template formula to escape double quotes from a single line text field.
@level1.name@="<ssEscape>@level1.Proposal Title@</ssEscape>";
- When using template formula to escape double quotes from a multiple lines text field.
@level1.description@="<ssEscape>@level1.Project Description.value@</ssEscape>";
- When using browser script to escape double quotes from a variable.
var name="<ssEscape>@name@</ssEscape>"; if(name=="") function goes here....
- When using Sslogic or visibility condition to escape double quotes from a single line text field.
<!--@sslogic("<ssEscape>@name@</ssEscape>"!="")--> There's a project title with double quotes <!--@end-->