Difference between revisions of "Maximum text length"
Line 11: | Line 11: | ||
*I have a Text grid question like below. | *I have a Text grid question like below. | ||
− | [[Image:MaximumTextLength1.jpg]] | + | [[Image:MaximumTextLength1.jpg]] |
− | *I want to set maximum text | + | *I want to set maximum length on text question. |
− | [[Image:MaximumTextLength2.jpg]] | + | [[Image:MaximumTextLength2.jpg]] |
=== Solution === | === Solution === | ||
Line 21: | Line 21: | ||
*Add a Text grid question to Questionnaire editor like below | *Add a Text grid question to Questionnaire editor like below | ||
*Go to menu Properties -> Question scripts -> Java script tab -> Input script | *Go to menu Properties -> Question scripts -> Java script tab -> Input script | ||
− | [[Image:MaximumTextLength Code.jpg]] | + | |
+ | [[Image:MaximumTextLength Code.jpg]] | ||
=== Code === | === Code === |
Latest revision as of 11:22, 16 January 2012
Maximum text length
In order to limit number of characters that respondent input to text box.
As a questionnaire creator
I want to set maximum length on text question.
Example
- I have a Text grid question like below.
- I want to set maximum length on text question.
Solution
- Add a Text grid question to Questionnaire editor like below
- Go to menu Properties -> Question scripts -> Java script tab -> Input script
Code
quest.maxlength = 10;
Source
Questionnaire Resource Id on cg site: 159730