Difference between revisions of "Validate email specified as an open text of a single question"

From Catglobe Wiki
Jump to: navigation, search
(Created page with '==Challenge== In order to secure my questionnaire's input<br/> As a CGS writer <br/> I want to validate an email specified as an open text of a single question<br/> Example<br/> …')
 
m (Solution)
Line 7: Line 7:
 
==Solution==
 
==Solution==
 
<source lang=javascript>
 
<source lang=javascript>
var qLabel = "Q1";
+
var qLabel = "Q1";//question's label
var openAnswerValue = 1;
+
var openAnswerValue = 1;//the value of answer option which has open text
var ErrorMessage_InvalidEmail = "Invalid email.";
+
var ErrorMessage_InvalidEmail = "Invalid email.";//error message in your needed language
 
    
 
    
 
var oldQuestionCheck = this.questioncheck;
 
var oldQuestionCheck = this.questioncheck;

Revision as of 04:03, 17 November 2009

Challenge

In order to secure my questionnaire's input
As a CGS writer
I want to validate an email specified as an open text of a single question
Example
Validate email - semi open question.png

Solution

var qLabel = "Q1";//question's label
var openAnswerValue = 1;//the value of answer option which has open text
var ErrorMessage_InvalidEmail = "Invalid email.";//error message in your needed language
   
var oldQuestionCheck = this.questioncheck;
questioncheck = function()
{
   if (!oldQuestionCheck())
   return false;
   
   var email = $("input[name='QUESTION." + qLabel + ".Open." + openAnswerValue +"']").val();
   
   if (!validateEmail(email))
   {
      ErrorMessages.getInstance().showErrorMessage(ErrorMessage_InvalidEmail);
      return false;
   }
   
   return true;
}