Actions

SGQA identifier: Difference between revisions

From LimeSurvey Manual

No edit summary
m (Text replacement - "Check the following" to "Check out the following")
 
(27 intermediate revisions by 6 users not shown)
Line 1: Line 1:
<languages /> <translate>
<!--T:1-->
__TOC__
<!--T:2-->
<div class="simplebox">'''Note:''' ''SGQA identifiers'' and ''INSERTANS: codes'' won't be available for usage any longer in LimeSurvey 4 within [[ExpressionScript Engine - Quick start guide|expressions]]. Instead, use [[ExpressionScript_-_Presentation|ExpressionScript]] compatible question codes. Check out the following link for [[ExpressionScript_-_Presentation#Access_to_variables|naming conventions]].</div>
<!--T:3-->
<div class="simplebox">'''Hint:''' This page describes how you can find out an SGQA identifier. For information how to use it please refer to the page [[Adding a question]]. </div>


__TOC__
=General Description= <!--T:4-->


<div class="simplebox">'''Hint:''' This page describes how you can find out an SQGA identifier. For information how to use it please refer to the page [[Adding a question]]. </div>


=General Description=
<!--T:5-->
The SGQA (Survey/Group/Question/Answer) identifier is a shortcut to the answer of a question. Every survey, group, and question you are creating gets a unique number assigned in your database. You can see this number in the admin interface in the title of the survey, group and question bar (e.g., see "question id" column below)


The SGQA (Survey/Group/Question/Answer) identifier is a shortcut to the answer of a question. Every survey, group and question you are creating gets a unique number assigned in your database. You can see this number in the admin interface in the title of the survey, group and question bar.


<!--T:6-->
<center>[[File:SGQA.png]]</center>
<center>[[File:SGQA.png]]</center>


To determine the SGQA identifier, you have to put these numbers together with the letter 'X' in between.


<!--T:7-->
To determine the SGQA identifier, you have to put the survey, group, and question numbers together with the letter 'X' in-between. E.g., an SGQA should look like this: "745X35X5".
<!--T:8-->
<div class="simplebox">'''Note:''' Always use capital letters ("X" instead of "x")!</div>
<div class="simplebox">'''Note:''' Always use capital letters ("X" instead of "x")!</div>


=Identifier for Single Choice Questions=


For example: Survey has ID 1, Group has ID 6, Question has ID 12. Your identifier for a single choice question would look like this:
=Use editor to add placeholder= <!--T:9-->
 
 
<!--T:10-->
The integrated editor has a feature to select the placeholder for a certain question. The icon is called "Placement fields". This feature always lists questions of previous survey pages only, so it depends on the survey mode.
 
 
<!--T:11-->
<center>[[File:lime_replacement_editor.png]]</center>
 
 
<!--T:32-->
<center>[[File:Lime replacement editor window.png]]</center>
 
 
=Identifier for Single Choice Questions= <!--T:12-->
 
 
<!--T:13-->
For example: survey has ID 1, Group has ID 6, Question has ID 12. Your identifier for a single choice question would look like this:


<!--T:14-->
1X6X12
1X6X12


=Identifier for Multiple Choice Questions=


=Identifier for Multiple Choice Questions= <!--T:15-->
<!--T:16-->
Since it is a multiple choice question the particular answer must be identified too. Just add the code of that answer without an X. For example: Survey has ID 1, Group has ID 6, Question has ID 12. The particular answer has code 'ber1'.
Since it is a multiple choice question the particular answer must be identified too. Just add the code of that answer without an X. For example: Survey has ID 1, Group has ID 6, Question has ID 12. The particular answer has code 'ber1'.


<!--T:17-->
Your identifier for this multiple choice question answer would look like this:
Your identifier for this multiple choice question answer would look like this:


<!--T:18-->
1X6X12ber1
1X6X12ber1


=Identifier for Array question types=


Since it is a array question the particular subquestion within the cell must be identified too. Add the subquestion code of the row without an X. For example: Survey has ID 1, Group has ID 6, Question has ID 12. The particular subquestion has code 'ber1'. Your identifier for this "Array" question answer would look like this:
=Identifier for Array question types= <!--T:19-->
 
 
<!--T:20-->
Since it is a array question, the particular subquestion within the cell must be identified too. Add the subquestion code of the row without an X. For example: Survey has ID 1, Group has ID 6, Question has ID 12. The particular subquestion has code 'ber1'. Your identifier for this "Array" question answer would look like this:


<!--T:21-->
1X6X12ber1
1X6X12ber1


=Identifier for Array (Text) or Array (Number) Questions=


Since it is a combined array question the particular answer within the cell must be identified too. Add the subquestion code of the row without an X, then append the underscore char and finally add the subquestion code that indentifies the column. For example: Survey has ID 1, Group has ID 6, Question has ID 12. The particular subquestion has code 'ber1', and the column is identified by the subquestion with code 'lab1'
=Identifier for Array (Text) or Array (Number) Questions= <!--T:22-->
 
 
<!--T:23-->
Since it is a combined array question, the particular answer within the cell must be identified too. Add the subquestion code of the row without an X, then append the underscore char and finally add the subquestion code that indentifies the column. For example: Survey has ID 1, Group has ID 6, Question has ID 12. The particular subquestion has code 'ber1', and the column is identified by the subquestion with code 'lab1'


<!--T:24-->
Your identifier for this "Array (Text)" question answer would look like this:
Your identifier for this "Array (Text)" question answer would look like this:


<!--T:25-->
1X6X12ber1_lab1
1X6X12ber1_lab1


=Uses of the SGQA identifier=


The SGQA identifier can be used to load the answers to previously saved questions into the question text of later questions. (See [[Adding a question]] - Information from previous answers)
=Uses of the SGQA identifier= <!--T:26-->
 
 
<!--T:27-->
The SGQA identifier can be used to load the answers of previously saved questions into the question text of later questions (for a short guide, see [[Questions_-_introduction#Information_from_previous_answers|the introduction wiki section on questions]]).
 
<!--T:28-->
It can also be used in the query URL of a survey to "prefill" answers to a survey. E.g., for SGQA 1X6X121ab1, your query URL could include "&1X6X121ab1=Y" to prefill that answer with a "Y". (See [[Workarounds: Survey behaviour#Prefilling_survey_answers_using_the_survey_URL|Prefilling survey answers using the survey URL]])
 
 
<!--T:33-->
{{Note|For more details on URL fields, check the following [[URL fields|wiki section]].}}
 
 
<!--T:29-->
The SGQA identifier is also the field name where the data for each question is stored in the database/survey responses table.


It can also be used in the query URL of a survey to "prefill" answers to a survey. eg: for SGQA 1X6X121ab1, your query URL could include "&1X6X121ab1=Y" to prefill that answer with a "Y". (See workarounds -> [http://docs.limesurvey.org/tiki-index.php?page=Workarounds#Prefilling_survey_answers_using_the_survey_URL Prefilling survey answers using the survey URL])


The SGQA identifier is also the field name where the data for each question is stored in the database survey responses table.
=Dynamically reference the SGQ identifier= <!--T:30-->


=Dynamically reference the SGQ identifier=


Some people may find a need to reference a question dynamically. For instance, if you would like to hide the input text field of a short text answer. You can now do this (as of SVN build 9755) by using the {SGQ} identifier. LimeSurvey will replace the {SGQ} with the full Id of that question, ex: 3583X84X249
<!--T:31-->
Some people may find a need to reference a question dynamically. For instance, if you would like to [[Workarounds: Manipulating a survey at runtime using Javascript#General|hide the input text field]] of a short text answer. You can now do this (as of SVN build 9755) by using the {SGQ} identifier. LimeSurvey will replace the {SGQ} with the full ID of that question, e.g., 3583X84X249
</translate>

Latest revision as of 19:12, 18 October 2020


Note: SGQA identifiers and INSERTANS: codes won't be available for usage any longer in LimeSurvey 4 within expressions. Instead, use ExpressionScript compatible question codes. Check out the following link for naming conventions.


Hint: This page describes how you can find out an SGQA identifier. For information how to use it please refer to the page Adding a question.


General Description

The SGQA (Survey/Group/Question/Answer) identifier is a shortcut to the answer of a question. Every survey, group, and question you are creating gets a unique number assigned in your database. You can see this number in the admin interface in the title of the survey, group and question bar (e.g., see "question id" column below)



To determine the SGQA identifier, you have to put the survey, group, and question numbers together with the letter 'X' in-between. E.g., an SGQA should look like this: "745X35X5".


Note: Always use capital letters ("X" instead of "x")!


Use editor to add placeholder

The integrated editor has a feature to select the placeholder for a certain question. The icon is called "Placement fields". This feature always lists questions of previous survey pages only, so it depends on the survey mode.




Identifier for Single Choice Questions

For example: survey has ID 1, Group has ID 6, Question has ID 12. Your identifier for a single choice question would look like this:

1X6X12


Identifier for Multiple Choice Questions

Since it is a multiple choice question the particular answer must be identified too. Just add the code of that answer without an X. For example: Survey has ID 1, Group has ID 6, Question has ID 12. The particular answer has code 'ber1'.

Your identifier for this multiple choice question answer would look like this:

1X6X12ber1


Identifier for Array question types

Since it is a array question, the particular subquestion within the cell must be identified too. Add the subquestion code of the row without an X. For example: Survey has ID 1, Group has ID 6, Question has ID 12. The particular subquestion has code 'ber1'. Your identifier for this "Array" question answer would look like this:

1X6X12ber1


Identifier for Array (Text) or Array (Number) Questions

Since it is a combined array question, the particular answer within the cell must be identified too. Add the subquestion code of the row without an X, then append the underscore char and finally add the subquestion code that indentifies the column. For example: Survey has ID 1, Group has ID 6, Question has ID 12. The particular subquestion has code 'ber1', and the column is identified by the subquestion with code 'lab1'

Your identifier for this "Array (Text)" question answer would look like this:

1X6X12ber1_lab1


Uses of the SGQA identifier

The SGQA identifier can be used to load the answers of previously saved questions into the question text of later questions (for a short guide, see the introduction wiki section on questions).

It can also be used in the query URL of a survey to "prefill" answers to a survey. E.g., for SGQA 1X6X121ab1, your query URL could include "&1X6X121ab1=Y" to prefill that answer with a "Y". (See Prefilling survey answers using the survey URL)


For more details on URL fields, check the following wiki section.


The SGQA identifier is also the field name where the data for each question is stored in the database/survey responses table.


Dynamically reference the SGQ identifier

Some people may find a need to reference a question dynamically. For instance, if you would like to hide the input text field of a short text answer. You can now do this (as of SVN build 9755) by using the {SGQ} identifier. LimeSurvey will replace the {SGQ} with the full ID of that question, e.g., 3583X84X249