Show more than one singe question in the same page

From Catglobe Wiki
Revision as of 10:07, 4 December 2009 by Catglobe (talk | contribs)
Jump to: navigation, search

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.


<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

var outerTable = $("

").append($("

").attr("align", "center").text(this.text))));

//option table var optionTable = $("

").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 = $("

").addClass("answer_option_cell")); tr.append($("
").attr("align","center")

.append($("<input type='radio' id='" + id + "' name='" + this.shortLabel + "' value='" + ao + "' onclick='javascript:optclickcustom(\"" + name + "\", " + ao + ", " + false + ");'" + checked + ">")); var aotext = $("

").attr("align","left")

.append($("<a href='javascript:optclickcustom(\"" + name + "\", " + ao + ", " + true + ");'>").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); }

</source>

  • 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.


<source lang="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':"Template: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':"Template:Q2.value"

};

var q3 = {

     'label': 'Q3',
     'text':'Q3',
     'aoTexts': ['AO1', 'AO2', 'AO3', 'AO4'],
     'aoValues': [1,2,3,4],
     'selectedValue':"Template:Q3.value"

};

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

").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() && qH2.validate() && qH3.validate(); } </source>