Actions

Vragen - introductie

From LimeSurvey Manual

Revision as of 14:31, 14 July 2013 by Han (talk | contribs)

Introductie

Nadat je een vraaggroep hebt aangemaakt, kun je vragen toevoegen. Maak een vraag aan door op het icoon toevoegen te klikken aan de rechterkant van de groep toolbar.

Je moet om een vraag toe te voegen, een "Code", de "Vraag", een "Help" en een "Vraagtype" invullen. De nieuwe vraag wordt standaard toegevoegd aan de groep waar je nu mee bezig bent, maar je kunt hier een andere vragengroep kiezen.

Veld beschrijvingen

  • Code: Je ID, of nummer of code voor de vraag. Dit is alleen maar een korte identificatie voor een vraag bij het exporteren of bij een evaluatie. Probeer een consequente codering te bedenken voor je hele enquête. Het veld wordt niet aan de deelnemers getoond.
NB.: De code moet binnen de enquête uniek zijn, moet beginnen met een letter of een underscore (_). Het mag alleen letters, cijfers en underscores bevatten. De code moet uniek zijn omdat je de gegevens mogelijk ooit naar SPSS of R wilt gaan exporteren. LimeSurvey zal voorlopig oudere codes blijven ondersteunen, maar in de functie toon logica enquête wordt hierover wel een melding gemaakt.
  • Vraag: De vraag zoals die gesteld wordt aan de deelnemers. Als je een uitleg bij de vraag wilt geven, doe dat dan niet in de vraag zelf, maar gebruik het "Help" veld. Je kunt HTML-code gebruiken om bijvoorbeeld plaatjes toe te voegen:
    <img src="http://www.yourdomain.com/yourpics/pic.jpg">
  • Help: Als je een toelichting bij een vraag wilt geven, dan kun je dat hier doen. De deelnemer ziet dan een "?" met de helptekst bij de vraag.
  • Vraagtype: Dit veld bepaald welke respons, dus wat kan de deelnemer invullen, mogelijk is. Lees Vraagtype voor een beschrijving van alle beschikbare types.
  • Validatie: Dit invoerveld is er bij alle vragen van een vraagtype met vrije tekst of numerieke invoer. You can use standard Regular Expressions in this field to validate the responses to the question, and if the responses don't validate against this expression, the user will be prompted to try again before they can progress.
  • Other?: Depending upon your chosen 'question type' this option may appear. It allows you to specify that an "other" option be presented in some of the list question types.
  • Mandatory?: For all question types this setting allows you to require users to answer the question, before they can move on to the next question. For ranking question this means all items have to be ranked.
  • Relevance:  This is the Boolean equation that specifies the conditions for this question.  If it evaluates to true, the question is show; otherwise it is hidden and since it is irrelevant, data for that question is NULLed in the database.  Details about how to use Relevance can be found on the Expression Manager pages.

Importing a question

At the bottom of the New Question Form you will find a file selection box to import a question file. Here you can import any question file (*.lsq or *.csv (old format)) you previously exported - for example this is useful if you want to reuse a question from another survey.

Important: If you import a question there will always be a new question created. The original question will not be overwritten. If you want to copy a question inside the same survey it is easier to select the existing question and than use the "Copy current question" button.

Informatie van tokens tabel

You can insert information/text from the tokens table into your question so that it can show context related information. For LimeSurvey to do this, the survey needs to be set as NOT Anonymous (ie: tracked), and it needs to have a tokens table.

The fields available for this are:

{TOKEN:FIRSTNAME} inserts the value from the "firstname" field in the tokens table
{TOKEN:LASTNAME} inserts the value from the "lastname" field in the tokens table
{TOKEN:EMAIL} inserts the value from the "email" field in the tokens table
{TOKEN:ATTRIBUTE_1} inserts the value from the "attribute_1" field in the tokens table
{TOKEN:ATTRIBUTE_2} inserts the value from the "attribute_2" field in the tokens table

To use this functionality you must type the field text into your question exactly as listed above. For example, if Attribute 1 contains either 'worker' or 'boss', one could personalise a question:

Hello {TOKEN:FIRSTNAME}. We sent an email to you using this address {TOKEN:EMAIL}. Is this correct?

Another example with more customisation, but using JavaScript (please see Optional settings on how to allow JavaScript when setting up questions and why it's not always a good idea. To use JavaScript you will need to deactivate the XSS filter in the Global settings):

Hello {TOKEN:FIRSTNAME}. We sent an email to you using this address {TOKEN:EMAIL}. Is this correct?
What do you as a {TOKEN:ATTRIBUTE_1} think about your
<script type="text/javascript" language="Javascript">;
   var job='{TOKEN:ATTRIBUTE_1}';
   if (job=='worker') {
      document.write ('bosses')
   } else {
      document.write('workers')
   }
</script>
?


Starting in Version 1.92, you can use Expression Manager to do such tailoring without needing JavaScript.  The equivalent in Version 1.92 is the following:


What do you as a {TOKEN:ATTRIBUTE_1} think about your {if(TOKEN:ATTRIBUTE_1=='worker','bosses','workers')}?

Informatie van vorige antwoorden

There is currently also the capacity to insert the answer of previous questions into the text of an answer with the following provisos:

  • The question must have been answered in a previously displayed page in the survey - answers to questions on the current page are not available
  • You refer to the exact Survey ID, Group ID and Question ID for the question to which the answer was made - in the form: {INSERTANS:SIDXGIDXQID} - ie {INSERTANS:1X2X3}. Read more under SGQA identifier to find out how to create this code.
Note: Starting in Version 1.92, the above limitations no longer exist:
  • You can refer to answers on the same page, and even dynamically update tailored messages as responses change on the page.
  • You can use qcode naming instead of {INSERTANS:SGQA} - for more details, see the Expression Manager documentation

A wizard has been integrated in the Wysiwyg HTML editor (FCKeditor), so that you can easilly insert previous answers SQGA codes: this plugin is called the LimeReplacementFields. In order to use this feature, in the FCKeditor, click on the "lime between brackets" icon, and select a question from the select box. Only answers from previous pages are displayed.

LimeReplacementFields notice: when you want to delete a reference to a {SQGA} tag, please select all chars from the openning bracket to the closing bracket and press delete: DO NOT erase it char by char with the Delete or Backspace key otherwise the field will appear again.

Styling Questions

It is possible to generally edit the question layout/design by using CSS using the template editor.