Welcome to the LimeSurvey Community Forum

Ask the community, share ideas, and connect with other LimeSurvey users!

Answer options based on previous question

More
8 years 4 months ago #128567 by mmsurveys
Replied by mmsurveys on topic Answer options based on previous question
Hey Denis, thank you for the suggestion. unfortunately, I'm a bit confused due to my lack of speaking French :/
Tonys version should work. If not, I'll come again and try the translator or just ask ;)
Many thanks to you!
The topic has been locked.
  • DenisChenu
  • DenisChenu's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
8 years 4 months ago #128572 by DenisChenu
Replied by DenisChenu on topic Answer options based on previous question
Hi, Tnoy solution was perfect :) and it work. Just to show alternatives :)

Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member, professional service on demand , plugin development .
I don't answer to private message.
The topic has been locked.
More
7 years 1 month ago #147949 by Sabrina2017
Replied by Sabrina2017 on topic Answer options based on previous question
Hi,

I tried this solution with Version 2.06 it work perfect, but not work on Version 2.57.1+161205, please how i need to change ?
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){

// The Q2 options corresponding to the Q1 options
teacherLists = {
C1 : 'T1,T3,T5',
C2 : 'T1,T2,T3,T4',
C3 : 'T2,T3,T4,T5',
C4 : 'T1,T4,T6'
};

// Identify this question
var thisQuestion = $('#question{QID}')

// The checked option in Q1
var q1Ans = '{Q1}';

// Hide all of the teachers
$('li[id^="javatbd"]', thisQuestion).hide();

// Now show the appropriate ones
$(teacherLists[q1Ans].split(',')).each(function(i){
$('input.radio[id$="'+{QID}+this+'"]').closest('li').show();
});

// Uncheck all hidden radios (in case page has been seen before)
$('li[id^="javatbd"]:hidden input.radio', thisQuestion).prop('checked', false);
});
</script>
Thanks
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Online
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
7 years 1 month ago #147959 by tpartner
Replied by tpartner on topic Answer options based on previous question
This will work in 2.5x:

Code:
<script type="text/javascript" charset="utf-8">
  $(document).ready(function(){
 
    // The Q2 options corresponding to the Q1 options    
    teacherLists = {
      C1 : 'T1,T3,T5',
      C2 : 'T1,T2,T3,T4',
      C3 : 'T2,T3,T4,T5',
      C4 : 'T1,T4,T6'
    };
 
    // Identify this question
    var thisQuestion = $('#question{QID}')
 
    // The checked option in Q1
    var q1Ans = '{Q1}';
 
    // Hide all of the teachers
    $('.answer-item', thisQuestion).hide();
 
    // Now show the appropriate ones
    $(teacherLists[q1Ans].split(',')).each(function(i){
      $('input.radio[id$="'+{QID}+this+'"]').closest('.answer-item').show();
    });
 
    // Uncheck all hidden radios (in case page has been seen before)
    $('.answer-item:hidden input.radio', thisQuestion).prop('checked', false);
  });
</script>

Sample survey attached:

File Attachment:

File Name: limesurvey...1-30.lss
File Size:16 KB

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The following user(s) said Thank You: Sabrina2017
The topic has been locked.
More
6 years 6 months ago #158678 by saifshaikh
Replied by saifshaikh on topic Answer options based on previous question
Hi Tony,

Can the above soloution work in ver 2.6 with both the question been on the same page.
The topic has been locked.
More
6 years 4 months ago - 6 years 4 months ago #160316 by AdinaNica1
Replied by AdinaNica1 on topic Answer options based on previous question
Hi!

I have a similar situation. I have tried to use the script that you shared and it didn't work (once you tick a certain answer in q1 it doesn't modify the options in Q2). I also tried to use your test survey, and it is the same result, no change. Is there anything else I should have done? Is this working only for certain versions?My version is 2.67.3+170728.

Many many thanks!
Last edit: 6 years 4 months ago by AdinaNica1.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Online
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
6 years 4 months ago #160345 by tpartner
Replied by tpartner on topic Answer options based on previous question
This script will work in 2.7.x:

Code:
<script type="text/javascript" charset="utf-8">
  $(document).ready(function(){
 
    // The Q2 options corresponding to the Q1 options    
    teacherLists = {
      C1 : 'T1,T3,T5',
      C2 : 'T1,T2,T3,T4',
      C3 : 'T2,T3,T4,T5',
      C4 : 'T1,T4,T6'
    };
 
    // Identify this question
    var thisQuestion = $('#question{QID}')
 
    // The checked option in Q1
    var q1Ans = '{Q1}';
 
    // Hide all of the teachers
    $('.answer-item', thisQuestion).hide();
 
    // Now show the appropriate ones
    $(teacherLists[q1Ans].split(',')).each(function(i){
      $('.answer-item[id$="'+{QID}+this+'"]').show();
    });
 
    // Uncheck all hidden radios (in case page has been seen before)
    $('.answer-item:hidden input.radio', thisQuestion).prop('checked', false);
  });
</script>

Sample survey attached:

File Attachment:

File Name: limesurvey...1-06.lss
File Size:16 KB

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The following user(s) said Thank You: AdinaNica1
The topic has been locked.
More
6 years 4 months ago - 6 years 4 months ago #160348 by AdinaNica1
Replied by AdinaNica1 on topic Answer options based on previous question
Thank you so much! I uploaded the demo and, when I click C1 in the first question, here is what it shows in the second page. Please see the attachment with the screenshot! In the meantime I have upgraded to 2.72 version and there is the same result :(
Is there anything I should do?
Adina
Last edit: 6 years 4 months ago by AdinaNica1.
The topic has been locked.
  • Joffm
  • Joffm's Avatar
  • Away
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
6 years 4 months ago #160358 by Joffm
Replied by Joffm on topic Answer options based on previous question
Hello,
in this case - filter a single punch question on a single punch question - I have a different approach.
To be honest: I prefer out of the box solutions just because of my lack of JS-knowledge.
Okay, Tony's script here is short, straight forward and easy to understand.

Let me explain:
Between the two single questions (here: course Q1 and teacher Q2) I insert an equation and a multiple question M1 (both hidden).
The multiple question with exactly the same answer options and codes as the second single ("Teachers") is used to be the matrix filter.

By the equation I preset the multiple question: e.g.
{M1_T1=if((Q1=="C1") OR (Q1=="C3"),"Y","")}

{M1_T2=if((Q1=="C2") OR (Q1=="C4") OR (Q1=="C5"),"Y","")}
...

And the matrix filter of Q2 is M1.

Best reqards
Joffm

File Attachment:

File Name: limesurvey...1532.lss
File Size:21 KB

Volunteers are not paid.
Not because they are worthless, but because they are priceless
The topic has been locked.
More
6 years 4 months ago #160372 by AdinaNica1
Replied by AdinaNica1 on topic Answer options based on previous question
Super! The demo is working (and this didn't happen to the previous demos)!
Can I use this script if the second question is multiple (I need to include a list of brands here)?
Adina
The topic has been locked.
  • Joffm
  • Joffm's Avatar
  • Away
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
6 years 4 months ago #160375 by Joffm
Replied by Joffm on topic Answer options based on previous question
Adina,

did you try?
Of course. The "trick" is the array filter. Everywhere you can use an array filter it will work.



Joffm

Volunteers are not paid.
Not because they are worthless, but because they are priceless
The topic has been locked.
  • Joffm
  • Joffm's Avatar
  • Away
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
6 years 4 months ago #160381 by Joffm
Replied by Joffm on topic Answer options based on previous question
Well, not to be confused.

I only said "you can do that". But of course you do not

In reality you use just subquestion relevance if the second question is multiple.

The whole workaround is only necessary, because there is no subquestion relevance in single punch questions (there are no subquestions)

Joffm

Volunteers are not paid.
Not because they are worthless, but because they are priceless
The topic has been locked.

Lime-years ahead

Online-surveys for every purse and purpose