Difference between revisions of "Change text box size"
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | == Change Text box size == | + | == Change Text box size == |
− | |||
− | In order to make text box wider. | + | In order to make text box wider. |
− | As a questionnaire creator | + | As a questionnaire creator |
I want to change text box size | I want to change text box size | ||
− | '''Example''' | + | '''Example''' |
− | |||
+ | *I have a Text grid question like below. | ||
− | + | [[Image:ChangeTextBoxSize1.jpg]] | |
− | + | *I want to change text box size. | |
− | + | [[Image:ChangeTextBoxSize2.jpg]] | |
− | |||
− | === Code === | + | === Solution === |
− | <source lang="javascript | + | |
+ | *Add a Text grid question to Questionnaire editor like below | ||
+ | *Go to menu Properties -> Question scripts -> Java script tab -> Input script | ||
+ | |||
+ | [[Image:ChangeTextBoxSize Code.jpg]] | ||
+ | |||
+ | === Code === | ||
+ | |||
+ | <source lang="javascript"> | ||
quest.size=50; | quest.size=50; | ||
− | </source> | + | </source> |
− | === Source === | + | === Source === |
Questionnaire Resource Id on cg site: 159730 | Questionnaire Resource Id on cg site: 159730 |
Latest revision as of 10:39, 16 January 2012
Change Text box size
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