Difference between revisions of "SmartCheck Validation"

From SmartWiki
Jump to: navigation, search
Line 1: Line 1:
 
==Examples==
 
==Examples==
Number value greater than 5 -> Fail:<pre>if(ssParseNum(form.getStr("cf_Store Value")) > 5)
+
Number value greater than 5 -> Fail:
 +
<pre>if(ssParseNum(form.getStr("cf_Store Value")) > 5)
 
     {result.isPassed=false;
 
     {result.isPassed=false;
 
     result.addMsg('Some message here');
 
     result.addMsg('Some message here');
Line 11: Line 12:
 
     result.isPassed=false;
 
     result.isPassed=false;
 
     }
 
     }
</pre>To include other scripts from SmartCheck script:
+
</pre>
 +
To include other scripts from SmartCheck script:
 
<pre>//@include(AnotherSmartCheckScriptName)</pre>
 
<pre>//@include(AnotherSmartCheckScriptName)</pre>

Revision as of 11:59, 4 December 2015

Examples

Number value greater than 5 -> Fail:

if(ssParseNum(form.getStr("cf_Store Value")) > 5)
    {result.isPassed=false;
    result.addMsg('Some message here');
    }

End Date is before Start Date -> Fail:

if (datediff('@date(startdate)@','@date(enddate)@','d') < 0)
    {result.addMsg('End date must be later than Start date'));
    result.isPassed=false;
    }

To include other scripts from SmartCheck script:

//@include(AnotherSmartCheckScriptName)