Welcome to the LimeSurvey Community Forum

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

Dual Scale Array to Multiple Scale Array Possibility?

  • Newbeedu
  • Newbeedu's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
11 years 11 months ago #76869 by Newbeedu
I am sorry for not making my requirement list clear the previous time.

Before we get in to the multiple rating questions, I have a multiple choice question that asks the respondent to select the parameters that he is considering.

So, after the parameters are selected (starting from 1 to 10 any number of parameters can be selected from the respondent as it is multiple choice) the parameters are to be listed in the next page where the respondent will be rating it on a scale of 5 for 3 or 4 different parameters.

I have attached a copy of the test survey.

Thanks,
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
11 years 11 months ago #76871 by tpartner

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
  • Newbeedu
  • Newbeedu's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
11 years 11 months ago #76872 by Newbeedu
Hi,

If I put the question code as suggested in the link, it is hiding all the 10 parameters.

I even tried with a new page, still it hides it all. :(
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
11 years 11 months ago #76878 by tpartner

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
  • Newbeedu
  • Newbeedu's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
11 years 11 months ago #76881 by Newbeedu
Sorry Tony its still not working.

it is displaying either all the options if I put the code in Array filter or none of the options if the put the question code in Array filter exclusion.

:(
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
11 years 11 months ago - 11 years 11 months ago #76888 by tpartner
You need to use the question code, not the question ID:




Try this survey:

File Attachment:

File Name: limesurvey...2571.lss
File Size:92 KB

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Last edit: 11 years 11 months ago by tpartner.
The following user(s) said Thank You: Newbeedu
The topic has been locked.
  • Newbeedu
  • Newbeedu's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
11 years 11 months ago #76949 by Newbeedu
Hi Again,

I am having 2 different matrix on a single page, as in 10 items rated on 3 parameters in one and 10 items rated on 4 other parameters again.

If i put these two question in a same question group, then everything is coming together.

Would it be possible to have it is 2 separate questions?
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
11 years 11 months ago #76950 by tpartner
Hmm...that's a little trickier. Can you attach a sample survey?

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
  • Newbeedu
  • Newbeedu's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
11 years 11 months ago #76955 by Newbeedu
I have attached a sample survey.

In page 2 all 7 parameters are listed in one line, where in i want the last 4 to be listed below the second question (like in page 3).

Pls Help.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
11 years 11 months ago #76966 by tpartner
A note before we go any farther: You must not use the "Random answer order" setting for these array questions.

I wrapped everything in a function that you need to call with the start and end question numbers. So, in the case of your sample survey where you want questions 2-4 inline and then questions 6-9 inline, you would call the function twice:
Code:
    sideBySide(2, 4);
    sideBySide(6, 9);

The complete code for your survey:
Code:
<script type="text/javascript" charset="utf-8">
 
  $(document).ready(function() {
 
    sideBySide(2, 4);
    sideBySide(6, 9);
 
    function sideBySide(start, end) {
 
      // Add some temporary classes to the target questions
      $('div[id^="question"]').each(function(i){
        var qNum = i + 1;
        var el = $(this);
        if (qNum >= start &amp;&amp; qNum <= end) {
          $(el).addClass('targetQ');
        }
      });
 
      // Wrap the questions in a div
      $('.targetQ').wrapAll('<div class="targetWrapper" />');
      $('.targetWrapper').after('<div style="clear:both" />');
 
      // Add some classes to the questions in the target wrapper
      $('.targetWrapper .targetQ').addClass('inlineQuestion inlineQuestionSub');
      $('.targetWrapper .inlineQuestionSub:first').removeClass('inlineQuestionSub').addClass('inlineQuestionPrime');
 
      // Remove the text from the secondary questions
      $('.targetWrapper .inlineQuestionSub th.answertext').text('');
 
      // Apply some styles (these are for the default template)
      $('.targetWrapper .inlineQuestion').css({ 'float': 'left' });
      $('.targetWrapper .inlineQuestion col, .targetWrapper .inlineQuestion th.answertext').css({ 'width': 'auto' });
      $('.targetWrapper .inlineQuestion .question-wrapper').css({ 'width': '100%' });
      $('.targetWrapper .inlineQuestion td.answer').css({ 'padding': '0.5em 0' });
      $('.targetWrapper .inlineQuestion td.questiontext').css({ 'text-align': 'center' });
 
      // Center the wrapper div
      var wrapperWidth = 0;
      $('.targetWrapper .inlineQuestion').each(function(i){ 
        wrapperWidth = wrapperWidth + $(this).width();
        var padLeft = $('.answertext:eq(0)', this).width() + 3;
        $('.questiontext', this).css({ 'padding-left':padLeft+'px', 'padding-right':'3px' });
      });
      $('.targetWrapper').css({ 'width':wrapperWidth+'px', 'margin': '0 auto' });
 
      // Set the row heights
      var wrapperWidth = 0;
      $('.targetWrapper .inlineQuestionSub').each(function(i){
        $('tbody[id^="javatbd"]', this).each(function(i){ 
          var ansHeight = $('.targetWrapper .inlineQuestionPrime th.answertext:eq('+i+')').innerHeight();
 
          if($.browser.mozilla) {
            $('th.answertext', this).height(ansHeight-1);
          }
          else {
            $('th.answertext', this).innerHeight(ansHeight);
          }
        });
      });
 
      // Remove the temporary classes
      $('.targetQ').removeClass('targetQ');
      $('.targetWrapper').removeClass('targetWrapper');
    }
  });
 
</script>

And the survey with the code in the source of the first array:

File Attachment:

File Name: limesurvey...2322.lss
File Size:70 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: Newbeedu
The topic has been locked.
More
11 years 11 months ago #78054 by DianaS7
Hi Tony,

My name is Diana, I Want to do an array with 3 different scales. I saw your posts and I tried to reproduce it on my computer. But I can´t do it.
I created 3 different arrays with the same number of rows.I edited one of the question and clicked the "Source" button and then I copied the script that you posted e saved the page. But nothing happened.
I don´t know if I can just copy the script or if I have to do something else.

I hope you can help me.

On the image attached you can see what I need to do.

Thanks
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
11 years 11 months ago #78057 by tpartner
Hi Diana,

Did you disable the XSS filter?

Can you activate a sample survey for me to see?

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.

Lime-years ahead

Online-surveys for every purse and purpose