Difference between revisions of "SmartCheck Validation"

From SmartWiki
Jump to: navigation, search
Line 1: Line 1:
 
Field names need to be encapsulated with double quotes
 
Field names need to be encapsulated with double quotes
  
Compare Start Time versus End Time
+
 
 +
'''Compare Start Time versus End Time'''
 
  if( (form.getStr('starthour')+form.getStr('startminute')) >= (form.getStr('endhour')+form.getStr('endminute')) )
 
  if( (form.getStr('starthour')+form.getStr('startminute')) >= (form.getStr('endhour')+form.getStr('endminute')) )
 
     {result.isPassed=false;
 
     {result.isPassed=false;
 
       result.addMsg('endhour','End time cannot be earlier than start time');  }
 
       result.addMsg('endhour','End time cannot be earlier than start time');  }

Revision as of 16:46, 26 June 2015

Field names need to be encapsulated with double quotes


Compare Start Time versus End Time

if( (form.getStr('starthour')+form.getStr('startminute')) >= (form.getStr('endhour')+form.getStr('endminute')) )
   {result.isPassed=false;
     result.addMsg('endhour','End time cannot be earlier than start time');  }