Difference between revisions of "Double columns in text grids"

From Catglobe Wiki
Jump to: navigation, search
Line 1: Line 1:
== Challenge ==  
+
== Double columns in Text grid  ==
Showing textfields of a text grid or answers options of single/multik grid in more than one column
 
  
[[Image:Example.jpg]]
+
In order to show text grid question in two columns.
 +
 
 +
As a questionnaire creator
 +
 
 +
I want to show text fields of a text grid or answers options of single/multi grid in more than one column
 +
 
 +
'''Example'''
 +
 
 +
*I have a Text grid question like below.
 +
 
 +
[[Image:DoubleColumnInTextGrid1.png]]
 +
 
 +
*I want to show text grid question in two columns.
 +
 
 +
[[Image:DoubleColumnInTextGrid2.png]]
  
 
== Solution ==  
 
== Solution ==  

Revision as of 10:02, 11 January 2012

Double columns in Text grid

In order to show text grid question in two columns.

As a questionnaire creator

I want to show text fields of a text grid or answers options of single/multi grid in more than one column

Example

  • I have a Text grid question like below.

DoubleColumnInTextGrid1.png

  • I want to show text grid question in two columns.

DoubleColumnInTextGrid2.png

Solution

Using Java Script property of question.

Code 1

//Include the following Javascript
quest.gridcolumns[0] = "Text 1";
quest.gridcolumns[1] = "Text 2";
...