Commit cfb3374c by Nilu

C008 - Augment copy for the first screen _only_ showing **ipsative** questions

parent 97e20eae
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
List<Question> totalQuestions = (List<Question>) process.getAttribute("TotalQuestions"); List<Question> totalQuestions = (List<Question>) process.getAttribute("TotalQuestions");
List<Question> allQuestions = (List<Question>) process.getAttribute("AllQuestions"); List<Question> allQuestions = (List<Question>) process.getAttribute("AllQuestions");
String exitPage = WebUtils.getArticleLink(request, transaction, WebUtils.APPLY_JOB, "Page") + "&id=" + job.getID() + "&key=" + job.getRandomKey(); String exitPage = WebUtils.getArticleLink(request, transaction, WebUtils.APPLY_JOB, "Page") + "&id=" + job.getID() + "&key=" + job.getRandomKey();
boolean showHelp = process.getAttribute("ShowHelp")!= null ? (boolean)process.getAttribute("ShowHelp") : true;
if(totalQuestions == null) if(totalQuestions == null)
{ {
...@@ -126,20 +125,11 @@ ...@@ -126,20 +125,11 @@
<div class="section-page-area section-job-match"> <div class="section-page-area section-job-match">
<% <%
if(actualNumber == 1 ) //|| (showHelp && questionType != QuestionType.SCALAR) if(actualNumber == 1 )
{ {
int maxRating = 7; int maxRating = 7;
int midRating = 4; int midRating = 4;
String otherRating = "2, 3, 5, 6"; String otherRating = "2, 3, 5, 6";
// if(questionType != QuestionType.SCALAR)
// {
// process.setAttribute("ShowHelp", false);
//
// maxRating = 3;
// midRating = 5;
// otherRating = "2, 4";
// }
%> %>
<div class="main-sc-section sj-1"> <div class="main-sc-section sj-1">
<p>Using the scale given, indicate how important to you are the following aspects in your work life. Use the following system:</p> <p>Using the scale given, indicate how important to you are the following aspects in your work life. Use the following system:</p>
...@@ -153,6 +143,17 @@ ...@@ -153,6 +143,17 @@
<div class="selection-br-line"></div> <div class="selection-br-line"></div>
<% <%
} }
else if(questionType == QuestionType.IPSATIVE && actualNumber == 31)
{
%>
<div class="main-sc-section sj-1">
<p>
For questions like these, indicate your preference by selecting the number closest to the term or idea that's most like you. We know that it can be challenging to make a choice sometimes, but try to avoid selecting the middle value.
</p>
</div>
<div class="selection-br-line"></div>
<%
}
%> %>
<div class="main-sc-section main-rate-section"> <div class="main-sc-section main-rate-section">
<% <%
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment