Actions

Question type - Multiple choice with comments/en: Difference between revisions

From LimeSurvey Manual

(Bezig met het importeren van een nieuwe versie uit een externe bron)
(从外部源导入一个新的版本)
Line 18: Line 18:
{{QS:defaults}}
{{QS:defaults}}


{INCLUDE(page="Core question settings",start="!mandatory",stop="---")}{INCLUDE}
{{QS:mandatory}}


{INCLUDE(page="Core question settings",start="!other",stop="---")}{INCLUDE}
{{QS:other}}


==These Core Settings are available in Version 1.92 and beyond==
==These Core Settings are available in Version 1.92 and beyond==

Revision as of 12:29, 21 May 2013

Short description

This question type can collect input of multiple selections through checkboxes, while allowing the user to provide additional comments with their submissions.


Download english sample question: P_-_Multiple_Options_with_Comments.csv

Core settings

QS:Defaults


Mandatory

Description

This option allows the survey administrators to request their respondents to answer certain survey questions. If the mandatory questions are not answered, the respondents will not be able to proceed further. If you have a question with multiple subquestions, and you require only certain subquestions to be answered, use the minimum answer attribute located under the Logic tab.

If you use any of the preinstalled themes and the mandatory question attribute is enabled, a red asterisk will be shown next to the question. If you wish to hide it, please check these instructions.


Available options

  • On - Question must be answered before the participant can proceed to the next page - the answer option 'No answer' is never shown.
  • Soft - If the question is not answered, a warning is shown when trying to proceed to the next page - however, the participant can choose to ignore the warning and proceed. Note that the 'No answer' option is still shown (if activated in survey presentation settings)
  • Off (default) - Question can be left unanswered



Option 'Other' (other)

Description

This option is used by multiple choice-type questions and gives you the ability to ask for a selection that is not part of the enumerated answer list.

Available options

  • On
  • Off (default)


These Core Settings are available in Version 1.92 and beyond

{INCLUDE(page="Core question settings",start="!relevance",stop="---")}{INCLUDE}

Advanced settings

{INCLUDE(page="Advanced question settings",start="!other_replace_text",stop="---")}{INCLUDE}

{INCLUDE(page="Advanced question settings",start="!random_order",stop="---")}{INCLUDE}

{INCLUDE(page="Advanced question settings",start="!hide_tip",stop="---")}{INCLUDE}

{INCLUDE(page="Advanced question settings",start="!random_group",stop="---")}{INCLUDE}

{INCLUDE(page="Advanced question settings",start="!hidden",stop="---")}{INCLUDE}

{INCLUDE(page="Advanced question settings",start="!min_answers",stop="---")}{INCLUDE}

{INCLUDE(page="Advanced question settings",start="!max_answers",stop="---")}{INCLUDE}

{INCLUDE(page="Advanced question settings",start="!other_numbers_only",stop="---")}{INCLUDE}

{INCLUDE(page="Advanced question settings",start="!other_comment_mandatory",stop="---")}{INCLUDE}

{INCLUDE(page="Advanced question settings",start="!assessment_value",stop="---")}{INCLUDE}

{INCLUDE(page="Advanced question settings",start="!array_filter",stop="---")}{INCLUDE}

{INCLUDE(page="Advanced question settings",start="!array_filter_exclude",stop="---")}{INCLUDE}

{INCLUDE(page="Advanced question settings",start="!scale_export",stop="---")}{INCLUDE}

{INCLUDE(page="Advanced question settings",start="!public_statistics",stop="---")}{INCLUDE}

{INCLUDE(page="Advanced question settings",start="!page_break",stop="---")}{INCLUDE}

These Advanced Settings are available in Version 1.92 and beyond

{INCLUDE(page="Advanced question settings",start="!array_filter_style",stop="---")}{INCLUDE}


Question validation equation (em_validation_q)

Description

This is an equation that is used to validate the entire question (e.g, all of its parts collectively for a multi-answer question). If the question fails the validation criteria, then em_validation_q_tip message will be displayed (it uses the CSS style .error). This tip uses the .em_q_fn_validation CSS style, which is hidden by default within template.css.

The main difference between this feature and the subquestion validation equations (em_validation_sq option) is that for this feature, if the question (or question parts) fail validation, then an error message could be shown. For the subquestion validation, each text entry cell (e.g., in an array question type, but it can also be applied to single entry question types) will be styled so that the background color is (light) red.

Valid values

  • Any equation that makes use of the ExpressionScript syntax, without surrounding curly braces.

Example

  • You want to collect demographic information from users via a multiple short text question, and you want to validate that the user has entered a valid email address and phone number.

This example shows how the question looks with invalid answers:

And here is what it looks like with one invalid answer:

Here is how you edit a question to enter that information:

And here is part of the Show Logic File output that lets you check the accuracy of your expression and ensure that there are no syntax errors:

As you can see, the validation equation tests that both the email and phone number are either empty or match a regular expression filter.

The validation tip only shows the warning message if the phone or email appears invalid.

 Hint: In order to create complex validation messages, read about the usage of the ExpressionScript.


If you wish to import the example from above into your LimeSurvey installation, download the following .lsq file: Em_validation_q_example.zip.

 Hint: Remember, LimeSuvey uses the Perl syntax for regular expressions, so they should start and end with / (slash character)!



Tip for whole question validation equation (em_validation_q_tip)

Description

If you are using the question validation equation, you can use this box in order to display an optional message as question tip on how the question has to be filled out.

Valid values

Example

See the example from the question validation equation wiki section- it shows how the tip can be tailored to show which parts of a multiple short text question fail the validation criteria.