More actions
Cg huyphong (talk | contribs) No edit summary |
No edit summary |
||
Line 22: | Line 22: | ||
ex1 : | ex1 : | ||
<source lang="javascript"> | |||
array qas_list = QAS_getByUserResourceId(38588899); | array qas_list = QAS_getByUserResourceId(38588899); | ||
print(qas_list); | print(qas_list); | ||
</source> | |||
ex2: | ex2: | ||
<source lang="javascript"> | |||
array qas_list = QAS_getByUserResourceId(38588899,38606878); | array qas_list = QAS_getByUserResourceId(38588899,38606878); | ||
print(qas_list); | print(qas_list); | ||
</source> | |||
'''Availability''' | '''Availability''' | ||
Revision as of 09:01, 3 January 2019
QAS_getByUserResourceId
Get list of answer sheets for a user.
Syntax
QAS_getByUserResourceId(userResourceId[, questionnaireResourceId])
Arguments
- userResourceId: is a number expression. It is the user's resource id.
- questionnaireResourceId: is a number expression. It is the questionnaire's resource id (optional).
Return value
an array of answer sheet objects {{QAS_1},{QAS_2},...} which have been assigned to the specific user. If no answer sheets exists then it will return an empty array.
Example:
ex1 :
array qas_list = QAS_getByUserResourceId(38588899);
print(qas_list);
ex2:
array qas_list = QAS_getByUserResourceId(38588899,38606878);
print(qas_list);
Availability
Version 5.8.1