Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Next revisionBoth sides next revision
en:create:inputs-single [25.06.2013 17:24] – created janisaltherren:create:inputs-single [21.06.2019 19:40] – Partial Update admin
Line 5: Line 5:
 **Important:** The question types "selection" and "multiple choice" provide this function by simply checking a box. See [[selection-textinput|Free text inputs within a selection]] how to do this. **Important:** The question types "selection" and "multiple choice" provide this function by simply checking a box. See [[selection-textinput|Free text inputs within a selection]] how to do this.
  
-How to achieve a similar output with scales and other question types and how to provide a dropdown selection inside another question is described here. SoSciSurvey provides the PHP-function ''[[functions-output#prepare_input|prepare_input()]]'' to achieve this. We will guide you through using this function using the following example.+How to achieve a similar output with scales and other question types and how to provide a dropdown selection inside another question is described here. SoSciSurvey provides a special placeholder ''​%input:...%'' for that purpose. We will guide you through using this function using the following example.
  
 {{:en:create:scr.inputs-single.complete.png?nolink|Example for freely placed input fields}} {{:en:create:scr.inputs-single.complete.png?nolink|Example for freely placed input fields}}
Line 14: Line 14:
  
 Technically, the input field that is to be added has to be prepared with ''prepare_input()''. In order to place the input field correctly, SoSciSurvey needs a placedholder amongst the original question's items. See further down for details. Technically, the input field that is to be added has to be prepared with ''prepare_input()''. In order to place the input field correctly, SoSciSurvey needs a placedholder amongst the original question's items. See further down for details.
 +
 +First, the inputs to be used have to be created in the **list of questions**. That means you create a new question, for example a text input question. Second, a placeholder is created, consisting of ''​%input:''​, the ID of the question or item to be used (e.g., the ID of the text input field that you have just created), and finished by a ''​%''​. Insert this palceholder whereever the input shall appear.
  
 **Tip:** Not every question type is available as independent input fields. **Tip:** Not every question type is available as independent input fields.
Line 26: Line 28:
 Create a new section with the //ID// "ZE", and the //Name// e.g. "Freely placed input fields". Create a new section with the //ID// "ZE", and the //Name// e.g. "Freely placed input fields".
  
-Create the superior question (ZE01) that will contain the input fields. The example above uses the //type// "Scale (extremes labeled)"+Create the question ZE01 with //type// "text input"In this question, an item is added automatically, having the ID ZE01_01For text inputs, it is useful to  set their width -- in this example 120 pixels. The item text will not show up, later. However set one, because it will be used for the variable lable in the data set.
- +
-{{:en:create:scr.inputs-single.outer_incomplete.png?nolink|Example for freely placed input fields - superior question}} +
- +
-Create another question ZE02 with the //type// "Text input"Add one item. It is advisable to add a field width -- This example uses 100 pixels. +
-There is no need to add neither a question nor a "text in front of the input field" although the "text in front" will be used as a variable label in the data export file.+
  
 {{:en:create:scr.inputs-single.inner2.png?nolink|Text input field that is to be placed freely}} {{:en:create:scr.inputs-single.inner2.png?nolink|Text input field that is to be placed freely}}
  
-Create the third question ZE03 with the //type// "dropdown" with three choice options.+Create another question ZE03 with the //type// "dropdown" with three choice options.
  
 {{:en:create:scr.inputs-single.inner3.png?nolink|Dropdown field that is to be placed freely}} {{:en:create:scr.inputs-single.inner3.png?nolink|Dropdown field that is to be placed freely}}
 +
 +FIXME
  
 Now we have to add placeholders into the superior question ZE01 (For more options, see [[placeholders|placeholders in questions and items]]. To do so, we add two items with the text "other:" to the superior question's items and add the placeholder: Now we have to add placeholders into the superior question ZE01 (For more options, see [[placeholders|placeholders in questions and items]]. To do so, we add two items with the text "other:" to the superior question's items and add the placeholder:
 +
 The first additional input field derives from item 01 of the question ZE02. The ID of this item is ZE02_01. Use this ID as a placeholder and add percent symbols to it: ''%ZE02_01%''. The first additional input field derives from item 01 of the question ZE02. The ID of this item is ZE02_01. Use this ID as a placeholder and add percent symbols to it: ''%ZE02_01%''.
 Therefore add an item to the superior question containing the //item text//: "other: %ZE02_01%" Therefore add an item to the superior question containing the //item text//: "other: %ZE02_01%"
Line 49: Line 49:
 The other input field is a dropdown selection. We don't just need one item but the whole question "ZE03". So you simply don't mention the item ID inside the placeholder: You use "%ZE03%". The other input field is a dropdown selection. We don't just need one item but the whole question "ZE03". So you simply don't mention the item ID inside the placeholder: You use "%ZE03%".
  
-As the preview still won't show much, you need to use php when assembling the questionnaire. When creating the questionnaire, add the element //PHP-code// ([[php|short guide to php]]). In this php-code, the input fields are prepared with [[functions-output#prepare_input|prepare_input()]] first, afterwards (!) you call the superior question ZE01 with its placeholder-items.+As the preview still won't show much, you need to use php when assembling the questionnaire. When creating the questionnaire, add the element //PHP-code// ([[php|short guide to php]]). In this php-code, the input fields are prepared with [[:en:create:functions:prepare_input|prepare_input()]] first, afterwards (!) you call the superior question ZE01 with its placeholder-items.
  
 <code php> <code php>
Line 62: Line 62:
  
 {{:en:create:scr.inputs-single.complete2.png?nolink|Example for freely placed input fields}} {{:en:create:scr.inputs-single.complete2.png?nolink|Example for freely placed input fields}}
 +
 +
 +====== Optimization =======
 +
 +An open-ended [[selection-textinput|text input in a normal selection question]] automatically selects the appropriate option when the respondent writes something into the text field. When text inputs are placed using `prepare_input()`, they are not automatically associated with the corresponding option. This can be set up using [[: de: create: javascript|JavaScript]].
 +
 +
 +===== Extended Selection and Text ====
 +
 +For example, if a question of the type "Extended Selection" (single or multiple choice) is used, insert the following JavaScript code (e. g. in an HTML code element) under the question.
 +
 +<code javascript>
 +<script type="text/javascript">
 +QuestionSelect.LinkSelect2Text("AU01_12", "TE01_01");
 +</script>
 +</code>
 +
 +The first parameter in the function `QuestionSelect.LinkSelect2Text()` specifies the HTML ID of the radio button or checkbox, in the example the option with the code 12 in question AU01 (an extended selection that allows multiple choice selection). The second parameter is the HTML identifier of the corresponding text input (here the first input in question TE01).
 +
 +The function `prepare_input ()` (in the PHP code at the top of the page) would have been used in this example for the identifier ''TE01_01''.
 +
 +If more than one open-ended inputs are used, you can simply call the function several times:
 +
 +<code javascript>
 +<script type="text/javascript">
 +QuestionSelect.LinkSelect2Text("AU01_12", "TE01_01");
 +QuestionSelect.LinkSelect2Text("AU01_16", "TE01_02");
 +QuestionSelect.LinkSelect2Text("AU01_221", "TE01_03");
 +</script>
 +</code>
en/create/inputs-single.txt · Last modified: 17.03.2021 20:52 by sophia.schauer
 
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
Driven by DokuWiki