Difference between revisions of "Show more than one singe question in the same page"

From Catglobe Wiki
Jump to: navigation, search
 
(2 intermediate revisions by one other user not shown)
Line 23: Line 23:
 
*Common script for creating an HTML table for each single question: this part should be left '''unchanged''', and could be added to either questionnaire's script property or the page question's script property. It is recommended to put in questionnaire's property so that it can be shared among different questions.
 
*Common script for creating an HTML table for each single question: this part should be left '''unchanged''', and could be added to either questionnaire's script property or the page question's script property. It is recommended to put in questionnaire's property so that it can be shared among different questions.
  
<br> &lt;source lang="javascript"&gt; function Single(q) { this.text = q.text; this.label = "QUESTION." + q.label; this.shortLabel = q.label; this.aoValues = q.aoValues; this.aoTexts = q.aoTexts; this.selectedValue = q.selectedValue; }  
+
<br/>
 +
<source lang="javascript">
 +
function Single(q)
 +
{
 +
this.text = q.text;
 +
this.label = "QUESTION." + q.label;
 +
this.shortLabel = q.label;
 +
this.aoValues = q.aoValues;
 +
this.aoTexts = q.aoTexts;
 +
this.selectedValue = q.selectedValue;
 +
}
  
//initialise HTML for all single questions Single.prototype.getHTML = function() { //add outer table  
+
//initialise HTML for all single questions
 +
Single.prototype.getHTML = function()
 +
{
 +
//add outer table
 +
var outerTable = $("<table>").addClass("question_outer");
 +
 +
//question text
 +
outerTable.append($("<tr>").append($("<td id = 'question_text'>").append($("<p>").attr("align", "center").text(this.text))));
 +
 +
//option table
 +
var optionTable = $("<table>").addClass("option_table");
 +
outerTable.append($("<tr>").append($("<td>").append(optionTable)));
 +
 +
var i;
 +
var n = this.aoValues.length;
 +
 +
var tr;
 +
for(i=0;i<n;i++)
 +
{
 +
tr = this.createRow(i);
 +
optionTable.append(tr);
 +
}
 +
 +
outerTable.append($("<input type='hidden'>").attr("name", this.label).val(this.selectedValue));
 +
 +
return outerTable;
 +
}
  
var outerTable = $("
+
//create row for each answer options
 +
Single.prototype.createRow = function(i)
 +
{
 +
var even;
 +
if(i % 2 == 0)
 +
even = "even";
 +
else
 +
even = "odd";
 +
 +
var name = this.label;
 +
var ao = this.aoValues[i];
 +
var id = name + "_" + ao;
 +
 +
var checked = "";
 +
if(ao == this.selectedValue) checked = "checked";
 +
 +
var tr = $("<tr>").addClass("option_row option_row_" + even);
 +
tr.append($("<td>").addClass("answer_option_cell"));
 +
tr.append($("<table>").append($("<tr>")));
 +
 +
var radiob = $("<td>").attr("align","center")
 +
.append($("<input type='radio' id='" + id + "' name='" + this.shortLabel + "' value='" + ao + "' onclick='javascript:optclickcustom(\"" + name + "\", " + ao + ", " + false + ");'" + checked + ">"));
 +
var aotext = $("<td>").attr("align","left")
 +
.append($("<a class='option_link' href='javascript:optclickcustom(\"" + name + "\", " + ao + ", " + true + ");'>"+this.aoTexts[i]+"</a>"));
 +
tr.append(radiob).append(aotext);
 +
 +
return tr;
 +
}
  
{|
+
Single.prototype.validate = function()
|-
+
{
| id="question_text" | ").append($("
+
var a = true;
").attr("align", "center").text(this.text))));  
+
if ($("input:hidden[name='" + this.label + "']").val() == "")
 +
{
 +
var a = false;
 +
showError(quest.requiredtext.replace(".",": ") + this.text);
 +
}
 +
return a;
 +
}
  
//option table
+
function showError(e)
var optionTable = $("
+
{
{|
+
ErrorMessages.getInstance().showErrorMessage(e);
|-
+
}
| ").append(optionTable)));  
 
var i; var n = this.aoValues.length;
 
  
var tr; for(i=0;i&lt;n;i++) { tr = this.createRow(i); optionTable.append(tr); }  
+
function optclickcustom(name, value, bool)
 +
{
 +
var id = name + "_" + value;
 +
$("input:hidden[name='" + name + "']").val(value);
 +
if (bool)
 +
$("input[id='" + id + "']").attr("checked", true);
 +
}
  
outerTable.append($("&lt;input type='hidden'&gt;").attr("name", this.label).val(this.selectedValue));
+
</source>
 
+
<br/>
return outerTable; }
+
*The second script part needs to be <b>modified</b> by the questionnaire creator to fit the real questionnaire. It must be added to the page question's javascript.
 
+
<br/>
//create row for each answer options Single.prototype.createRow = function(i) { var even; if(i&nbsp;% 2 == 0) even = "even"; else even = "odd";
+
<source lang="javascript">
 
+
var qH1;
var name = this.label; var ao = this.aoValues[i]; var id = name + "_" + ao;
+
var qH2;
 
+
var qH3;
var checked = ""; if(ao == this.selectedValue) checked = "checked";
 
var tr = $("
 
|-
 
| ").addClass("answer_option_cell")); tr.append($("
 
{|
 
|-
 
| ").attr("align","center")
 
.append($("&lt;input type='radio' id='" + id + "' name='" + this.shortLabel + "' value='" + ao + "' onclick='javascript:optclickcustom(\"" + name + "\", " + ao + ", " + false + ");'" + checked + "&gt;"));
 
var aotext = $("
 
| ").attr("align","left")
 
.append($("&lt;a href='javascript:optclickcustom(\"" + name + "\", " + ao + ", " + true + ");'&gt;").addClass("option_link").text(this.aoTexts[i])); tr.append(radiob).append(aotext);
 
 
 
return tr; }
 
 
 
Single.prototype.validate = function() { var a = true; if ($("input:hidden[name='" + this.label + "']").val() == "") { var a = false; showError(quest.requiredtext.replace(".",": ") + this.text); } return a; }
 
 
 
function showError(e) { ErrorMessages.getInstance().showErrorMessage(e); }
 
 
 
function optclickcustom(name, value, bool) { var id = name + "_" + value; $("input:hidden[name='" + name + "']").val(value); if (bool) $("input[id='" + id + "']").attr("checked", true); }
 
 
 
&lt;/source&gt; <br>  
 
 
 
*The second script part needs to be '''modified''' by the questionnaire creator to fit the real questionnaire. It must be added to the page question's javascript.
 
 
 
<br> &lt;source lang="javascript"&gt; var qH1; var qH2; var qH3;  
 
 
 
quest.onInit = function() {
 
  
 +
quest.onInit = function()
 +
{
 
   //------CONFIGURATION PART---------------
 
   //------CONFIGURATION PART---------------
 +
        var q1 = {
 +
        'label': 'Q1',//question's label
 +
        'text':'Q1',//question's text
 +
        'aoTexts': ['AO1', 'AO2'],//answer options' texts
 +
        'aoValues': [1,2],//answer options' values
 +
        'selectedValue':"{{Q1.value}}"//previously selected value, please remember to use EXACT texts, do not use loops to generate values
 +
};
  
var q1 = {
+
var q2 = {
 
+
        'label': 'Q2',
      'label': 'Q1',//question's label
+
        'text':'Q2',
      'text':'Q1',//question's text
+
        'aoTexts': ['AO1', 'AO2', 'AO3'],
      'aoTexts': ['AO1', 'AO2'],//answer options' texts
+
        'aoValues': [1,2,3],
      'aoValues': [1,2],//answer options' values
+
        'selectedValue':"{{Q2.value}}"
      'selectedValue':"{{Q1.value}}"//previously selected value, please remember to use EXACT texts, do not use loops to generate values
+
};  
 
+
};
+
var q3 = {
 
+
        'label': 'Q3',
var q2 = {  
+
        'text':'Q3',
 
+
        'aoTexts': ['AO1', 'AO2', 'AO3', 'AO4'],
      'label': 'Q2',
+
        'aoValues': [1,2,3,4],
      'text':'Q2',
+
        'selectedValue':"{{Q3.value}}"
      'aoTexts': ['AO1', 'AO2', 'AO3'],
+
};  
      'aoValues': [1,2,3],
 
      'selectedValue':"{{Q2.value}}"
 
 
 
};  
 
 
 
var q3 = {  
 
 
 
      'label': 'Q3',
 
      'text':'Q3',
 
      'aoTexts': ['AO1', 'AO2', 'AO3', 'AO4'],
 
      'aoValues': [1,2,3,4],
 
      'selectedValue':"{{Q3.value}}"
 
 
 
};  
 
 
 
//create object to get HTML qH1 = new Single(q1); qH2 = new Single(q2); qH3 = new Single(q3);
 
var table = $("
 
{| cellspacing="10"
 
|-
 
| ").append(qH1.getHTML()));
 
table.append(tr);
 
var tr = $("
 
|-
 
| ").append(qH2.getHTML()));
 
table.append(tr);
 
var tr = $("
 
|-
 
| ").append(qH3.getHTML()));
 
table.append(tr);
 
 
 
$("#page_question_text").append(table); $(".question_outer").width("100%"); }
 
  
//Check if all questions have values questioncheck = function() { ErrorMessages.getInstance().clearErrorMessages(); return qH1.validate() &amp;&amp; qH2.validate() &amp;&amp; qH3.validate(); }
+
//create object to get HTML
&lt;/source&gt;
+
qH1 = new Single(q1);
|}
+
qH2 = new Single(q2);
 +
qH3 = new Single(q3);
  
|}
+
var table = $("<table cellspacing='10'>").attr("align","center");
 +
 
 +
var tr = $("<tr>");
 +
tr.append($("<td>").append(qH1.getHTML()));
 +
table.append(tr);
 +
 +
var tr = $("<tr>");
 +
tr.append($("<td>").append(qH2.getHTML()));
 +
table.append(tr);
 +
 +
var tr = $("<tr>");
 +
tr.append($("<td>").append(qH3.getHTML()));
 +
table.append(tr);
  
|}
+
$("#page_question_text").append(table); 
 +
$(".question_outer").width("100%");
 +
}
  
 +
//Check if all questions have values
 +
questioncheck = function()
 +
{
 +
ErrorMessages.getInstance().clearErrorMessages();
 +
return qH1.validate() && qH2.validate() && qH3.validate();
 +
}
 +
</source>
  
 +
==Code sample ==
  
|}
+
Open the qnaire "Js demo - some js samples" (Resource Id: 159684). View the Question "ShowMoreSingleQuestion"

Latest revision as of 09:19, 14 February 2012

Challenge

In order to save time clicking Next
As a questionnaire creator
I want to show more than one single questions in the same page

Example

MultiSingleQuestions.png

Solution

Create a page question to put the questions on

Set single questions to dummy questions

Add javascript to the page question

NOTICE: different languages have different texts, remember to add scripts for each language with corresponding texts

Code

There are 2 parts of script:

  • Common script for creating an HTML table for each single question: this part should be left unchanged, and could be added to either questionnaire's script property or the page question's script property. It is recommended to put in questionnaire's property so that it can be shared among different questions.


function Single(q)
{
	this.text = q.text;
	this.label = "QUESTION." + q.label;
	this.shortLabel = q.label;
	this.aoValues = q.aoValues;
	this.aoTexts = q.aoTexts;
	this.selectedValue = q.selectedValue;
}

//initialise HTML for all single questions
Single.prototype.getHTML = function()
{
	//add outer table
	var outerTable = $("<table>").addClass("question_outer");
	
	//question text
	outerTable.append($("<tr>").append($("<td id = 'question_text'>").append($("<p>").attr("align", "center").text(this.text))));
	
	//option table
	var optionTable = $("<table>").addClass("option_table");
	outerTable.append($("<tr>").append($("<td>").append(optionTable)));
	
	var i;
	var n = this.aoValues.length;
	
	var tr;
	for(i=0;i<n;i++)
	{
		tr = this.createRow(i);
		optionTable.append(tr);
	}
	
	outerTable.append($("<input type='hidden'>").attr("name", this.label).val(this.selectedValue));
	
	return outerTable;
}

//create row for each answer options
Single.prototype.createRow = function(i)
{
	var even;
	if(i % 2 == 0)
		even = "even";
	else
		even = "odd";
		
	var name = this.label;
	var ao = this.aoValues[i];
	var id = name + "_" + ao;
	
	var checked = "";
	if(ao == this.selectedValue) checked = "checked";
	
	var tr = $("<tr>").addClass("option_row option_row_" + even);
	tr.append($("<td>").addClass("answer_option_cell"));
	tr.append($("<table>").append($("<tr>")));
	
	var radiob = $("<td>").attr("align","center")
		.append($("<input type='radio' id='" + id + "' name='" + this.shortLabel + "' value='" + ao + "' onclick='javascript:optclickcustom(\"" + name + "\", " + ao + ", " + false + ");'" + checked + ">"));
	var aotext = $("<td>").attr("align","left")
		.append($("<a class='option_link' href='javascript:optclickcustom(\"" + name + "\", " + ao + ", " + true + ");'>"+this.aoTexts[i]+"</a>"));
	tr.append(radiob).append(aotext);
	
	return tr;
}

Single.prototype.validate = function()
{
	var a = true;
	if ($("input:hidden[name='" + this.label + "']").val() == "")
	{
		var a = false;
		showError(quest.requiredtext.replace(".",": ") + this.text);
	}
	return a;
}

function showError(e)
{
	ErrorMessages.getInstance().showErrorMessage(e);
}

function optclickcustom(name, value, bool)
{
	var id = name + "_" + value;
	$("input:hidden[name='" + name + "']").val(value);
	if (bool)
	$("input[id='" + id + "']").attr("checked", true);
}


  • The second script part needs to be modified by the questionnaire creator to fit the real questionnaire. It must be added to the page question's javascript.


var qH1;
var qH2;
var qH3;

quest.onInit = function()
{
   //------CONFIGURATION PART---------------
        var q1 = {
        'label': 'Q1',//question's label
        'text':'Q1',//question's text
        'aoTexts': ['AO1', 'AO2'],//answer options' texts
        'aoValues': [1,2],//answer options' values
        'selectedValue':"{{Q1.value}}"//previously selected value, please remember to use EXACT texts, do not use loops to generate values
	};

	var q2 = {
        'label': 'Q2',
        'text':'Q2',
        'aoTexts': ['AO1', 'AO2', 'AO3'],
        'aoValues': [1,2,3],
        'selectedValue':"{{Q2.value}}"
	}; 
	
	var q3 = {
        'label': 'Q3',
        'text':'Q3',
        'aoTexts': ['AO1', 'AO2', 'AO3', 'AO4'],
        'aoValues': [1,2,3,4],
        'selectedValue':"{{Q3.value}}"
	}; 

	//create object to get HTML
	qH1 = new Single(q1);
	qH2 = new Single(q2);
	qH3 = new Single(q3);

	var table = $("<table cellspacing='10'>").attr("align","center");
   
	var tr = $("<tr>");
	tr.append($("<td>").append(qH1.getHTML()));
	table.append(tr);
	
	var tr = $("<tr>");
	tr.append($("<td>").append(qH2.getHTML()));
	table.append(tr);
	
	var tr = $("<tr>");
	tr.append($("<td>").append(qH3.getHTML()));
	table.append(tr);

	$("#page_question_text").append(table);   
	$(".question_outer").width("100%");
}

//Check if all questions have values
questioncheck = function()
{
	ErrorMessages.getInstance().clearErrorMessages();
	return qH1.validate() && qH2.validate() && qH3.validate();
}

Code sample

Open the qnaire "Js demo - some js samples" (Resource Id: 159684). View the Question "ShowMoreSingleQuestion"