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.

Change text box size: Difference between revisions

From Catglobe Wiki
No edit summary
Cg van (talk | contribs)
No edit summary
Line 1: Line 1:
== Challenge ==  
== Change Text box size ==  
You want to change the text box size  in a Text question .The script is often used together with the Maximum text length script
You want to change the text box size  in a Text question .The script is often used together with the Maximum text length script
== Code ==  
 
In order to make text box wider.
 
As a questionnaire creator
 
I want to change text box size
 
'''Example'''
*I have a Text grid question like below.
 
 
*I want to change text box size.
 
=== Solution ===
 
*Add a Text grid question to Questionnaire editor like below
*Go to menu Properties -> Question scripts -> Java script tab -> Input script
 
=== Code ===  
<source lang="javascript" line="1">
<source lang="javascript" line="1">
quest.size=50;
quest.size=50;
</source>
</source>
=== Source ===
Questionnaire Resource Id on cg site: 159730

Revision as of 08:27, 16 January 2012

Change Text box size

You want to change the text box size in a Text question .The script is often used together with the Maximum text length script

In order to make text box wider.

As a questionnaire creator

I want to change text box size

Example

  • I have a Text grid question like below.


  • I want to change text box size.

Solution

  • Add a Text grid question to Questionnaire editor like below
  • Go to menu Properties -> Question scripts -> Java script tab -> Input script

Code

quest.size=50;

Source

Questionnaire Resource Id on cg site: 159730