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.

GotoQuestionnaire: Difference between revisions

From Catglobe Wiki
Tungocman (talk | contribs)
Tungocman (talk | contribs)
No edit summary
Line 9: Line 9:
'''Syntax'''
'''Syntax'''


gotoQuestionnaire(''questionnaire_spec'')
gotoQuestionnaire(''questionnaire_qualified_name'')


'''Arguments'''
'''Arguments'''


''questionnaire_spec:'' Is a string expression.
''questionnaire_qualified_name:'' Is a string expression.It must be a qualified name.


'''Return type'''
'''Return type'''
Line 21: Line 21:
'''Examples'''
'''Examples'''


<source lang="javscript">
<source lang="javascript">
// Go to the newest uncompleted QAS of another questionnaire: TestQnaire
// Go to the newest uncompleted QAS of another questionnaire: TestQnaire
gotoQuestionnaire("System\\TestQnaire");
gotoQuestionnaire("System\\TestQnaire");


</source>
</source>

Revision as of 04:05, 22 December 2011



gotoQuestionnaire

Go to the newest uncompleted QAS of the current respondent. This newest uncompleted QAS is belong to another questionnaire

Syntax

gotoQuestionnaire(questionnaire_qualified_name)

Arguments

questionnaire_qualified_name: Is a string expression.It must be a qualified name.

Return type

empty

Examples

// Go to the newest uncompleted QAS of another questionnaire: TestQnaire
gotoQuestionnaire("System\\TestQnaire");