Advanced Programming

From qualtrics

(Difference between revisions)
Jump to: navigation, search
(New page: == How to change the width of text boxes in question types other than Text Entry == You can paste the following CSS code either into an individual question or into your header (to apply t...)
Line 1: Line 1:
== How to change the width of text boxes in question types other than Text Entry ==
== How to change the width of text boxes in question types other than Text Entry ==
-
You can paste the following CSS code either into an individual question or into your header (to apply to the entire survey).  Then, you will adjust the width value to meet your needs.
+
You can paste the following CSS code either into an individual question or into your [[header]] to apply to the entire survey (Find the header in the [[Look and Feel]] section).  Then, you will adjust the width value to meet your needs.
<BR><style>
<BR><style>
Line 11: Line 11:
== How to give feedback based on answers to multiple choice questions ==
== How to give feedback based on answers to multiple choice questions ==
-
The calculations and feedback are achieved by using the “Scoring” feature available in Advanced Options during survey editing. The scoring feature allows you to assign numerical values to the multiple choice questions and then add the scores.  
+
The calculations and feedback are achieved by using the [[Scoring]] feature available in [[Advanced Survey Options]] during survey editing. The scoring feature allows you to assign numerical values to the multiple choice questions and then add the scores.  
   
   
-
Feedback based on the score can be determined by a series of questions using display logic. First, the score must be set as embedded data after the data-gathering block through the survey flow. In the next block, you can call on this embedded data to create your display logic and display different sets of feedback depending on the score.
+
Feedback based on the score can be determined by a series of questions using [[Display Logic|display logic]]. First, the score must be set as [[Embedded Data|embedded data]] after the data-gathering block through the [[Survey Flow|survey flow]]. In the next block, you can call on this embedded data to create your display logic and display different sets of feedback depending on the score.

Revision as of 14:43, 22 March 2010

How to change the width of text boxes in question types other than Text Entry

You can paste the following CSS code either into an individual question or into your header to apply to the entire survey (Find the header in the Look and Feel section). Then, you will adjust the width value to meet your needs.


<style>
Skin .QuestionBody .TextEntryBox {
width:10em;
}
</style>

How to give feedback based on answers to multiple choice questions

The calculations and feedback are achieved by using the Scoring feature available in Advanced Survey Options during survey editing. The scoring feature allows you to assign numerical values to the multiple choice questions and then add the scores.

Feedback based on the score can be determined by a series of questions using display logic. First, the score must be set as embedded data after the data-gathering block through the survey flow. In the next block, you can call on this embedded data to create your display logic and display different sets of feedback depending on the score.

Personal tools