Difference between revisions of "SmartCheck Validation"
From SmartWiki
m |
|||
Line 1: | Line 1: | ||
{{Template:UnderConstruction}} | {{Template:UnderConstruction}} | ||
− | |||
=Examples= | =Examples= | ||
+ | ====Application Name field black -> Fail:====<pre>if(form.getStr("sf_Application Name") == "") | ||
+ | {result.isPassed=false; | ||
+ | result.addMsg('Application name cannot be blank'); | ||
+ | }</pre | ||
====Number value greater than 5 -> Fail:==== | ====Number value greater than 5 -> Fail:==== | ||
<pre>if(ssParseNum(form.getStr("cf_Store Value")) > 5) | <pre>if(ssParseNum(form.getStr("cf_Store Value")) > 5) |
Revision as of 13:57, 4 December 2015
Contents
Examples
====Application Name field black -> Fail:====if(form.getStr("sf_Application Name") == "") {result.isPassed=false; result.addMsg('Application name cannot be blank'); }</pre ====Number value greater than 5 -> Fail:==== <pre>if(ssParseNum(form.getStr("cf_Store Value")) > 5) {result.isPassed=false; result.addMsg('Some message here'); }
Single field upload field has no file -> Fail:
if("@Single File Field.filename@" == "") {result.isPassed=false; result.addMsg('Please upload a file here'); }
Multi file upload field has no files -> Fail:
if(ssParseNum("@level1.MUlti upload.numoffiles@") < 1) {result.isPassed=false; result.addMsg('Please upload at least one file'); }
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)