...
5 Testing. Open up your survey on the web, and log in. Run through each of the pages until the survey ends. You may need to do this more then once to see the randomization effect. This is especially true of the other types of randomization such as redirectToRandomOrderAndBalanced.
More complex example: Randomizing multiple measures with multiple pages
(I call this "nested randomization")
For this example, we will randomize 3 measures named A, B, and C as above. This time, each measure has 9 very wordy long answer questions spread across 3 pages each so they can fit on a small screen without the need to scroll. (Please note for the sake of sanity, this example is intentionally short. You can add as many pages, measures and questions as needed for you own application.)
At the top layer, we want to randomize the order of each of the 3 measures A, B, and C. For example, ABC, CBA, BCA, etc. Underneith, measure A consists of pages 1-3, B pages 4-6, and C pages 7-9
...
- Repeat step 1 in the first example in the Web Survey Toolkit GUI until you have 3 measures, consisting of 3 pages each - pages 1-9. Name each page, Page 1, Page 2, Page 3, etc. in the Survey Manager.
- Additionally, create a header in the Web Survey Toolkit GUI for each survey page noting their group and page number so we can test our results. For example, Measure A, Page 1; Measure A, Page 2 etc. and number each question 1-30 inside the question text.
- Repeat step 2 in the first example until all 9 jsp pages are created. However, in pages 4-6 change nextPage to random1.jsp, and in pages 7-9 to random2.jsp.
Code Block | ||||
---|---|---|---|---|
| ||||
<%@include file="include_questionnaire.jsp"%> <survey:surveypage pageName="Page 4" pageWidth="600" nextPage="random1.jsp" submitButtonText="Next" showSubmitButton="true" timeResponses="false" rememberPageUserIsOn="true" pageToLoginTo="index.jsp" tableToVerifyLoginTo="Users" isLoginPage="false" /> <%@include file="survey_end.jsp"%> |
Code Block | ||||
---|---|---|---|---|
| ||||
<%@include file="include_questionnaire.jsp"%>
<survey:surveypage
pageName="Page 9"
pageWidth="600"
nextPage="random2.jsp"
submitButtonText="Next"
showSubmitButton="true"
timeResponses="false"
rememberPageUserIsOn="true"
pageToLoginTo="index.jsp"
tableToVerifyLoginTo="Users"
isLoginPage="false"
/>
<%@include file="survey_end.jsp"%>
|