Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Double columns in text grids: Difference between revisions

From Catglobe Wiki
m Double columns in a Text grid
 
No edit summary
Line 1: Line 1:
Include the following Javascript
== Challenge ==
Showing textfields of a text grid or answers options of single/multik grid in more than one column


<code>
== Solution ==
quest.gridcolumns[0] = "Text 1";<br/>
Using Java Script property of question.
 
== Code 1 ==
<source lang="javascript">
//Include the following Javascript
quest.gridcolumns[0] = "Text 1";
quest.gridcolumns[1] = "Text 2";
quest.gridcolumns[1] = "Text 2";
</code>
...
 
</source>

Revision as of 12:27, 1 July 2009

Challenge

Showing textfields of a text grid or answers options of single/multik grid in more than one column

Solution

Using Java Script property of question.

Code 1

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