Welcome to the LimeSurvey Community Forum

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

Ranking question type does not show drag and drop

  • LouisGac
  • LouisGac's Avatar
  • Visitor
  • Visitor
6 years 3 months ago #162471 by LouisGac
Tony: that's for LS3, he's using 2.70
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
6 years 3 months ago #162472 by tpartner
That's what I see in the source.

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
6 years 3 months ago #162474 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.
  • Heinrich
  • Heinrich's Avatar Topic Author
  • Offline
  • Senior Member
  • Senior Member
More
6 years 3 months ago #162493 by Heinrich
Thank you! Using the code of tpartner, it works!

Do I now always have to implement that source code or is there any other suggestion how to fix this?

Thanks.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
6 years 3 months ago #162499 by tpartner
Try adding this to the end of template.js - it should target all ranking questions.

Code:
$(document).ready(function() {
  var lang = $('body').attr('class').split(' lang-')[1].split(' ')[0];
 
  // The ranking interface text strings - Add/edit as required
  rankingTranslations = {          
    en: {          
      choice: 'Your choices',          
      rank: 'Your ranking',          
      help: 'Double-click or drag-and-drop items in the left list to move them to the right - your highest ranking item should be on the top right, moving through to your lowest ranking item.'         
    },          
    de: {          
      choice: 'Ihre Auswahl',          
      rank: 'Ihre Rangfolge',          
      help: 'Ordnen Sie die Elemente in die rechte Liste ein (höchste Bewertung oben). Die Elemente können mit der Maus verschoben werden. Doppelklick verschiebt ein Element in die andere Liste.'         
    }         
  };  
 
  aRankingTranslations = {          
    choicetitle: rankingTranslations[lang]['choice'],          
    ranktitle: rankingTranslations[lang]['rank'],          
    rankhelp: rankingTranslations[lang]['help']         
  };
 
  // Loop through all ranking questions  
  $('.question-container.ranking').each(function(e) {
    // Apply the drag-drop ranking interface
    var thisQID = $(thisQuestion).attr('id').replace(/question/, '');
    doDragDropRank(thisQID, 1,1,1);
  });
});

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
  • Heinrich
  • Heinrich's Avatar Topic Author
  • Offline
  • Senior Member
  • Senior Member
More
6 years 3 months ago #162501 by Heinrich
Thank you. Unfortunately it does not work. I edited the template.js, have chosen the template and removed the code in the question. No luck. Any suggestions about that?
Thanks!
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
6 years 3 months ago #162505 by tpartner
Can you activate that test survey again?

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
  • Heinrich
  • Heinrich's Avatar Topic Author
  • Offline
  • Senior Member
  • Senior Member
More
6 years 3 months ago #162525 by Heinrich
Yes, sure, thanks. I´ve sent you a private message.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
6 years 3 months ago #162535 by tpartner
Oops, found a bug.

Try this:

Code:
$(document).ready(function() {
  var lang = $('body').attr('class').split(' lang-')[1].split(' ')[0];
 
  // The ranking interface text strings - Add/edit as required
  rankingTranslations = {          
    en: {          
      choice: 'Your choices',          
      rank: 'Your ranking',          
      help: 'Double-click or drag-and-drop items in the left list to move them to the right - your highest ranking item should be on the top right, moving through to your lowest ranking item.'         
    },          
    de: {          
      choice: 'Ihre Auswahl',          
      rank: 'Ihre Rangfolge',          
      help: 'Ordnen Sie die Elemente in die rechte Liste ein (höchste Bewertung oben). Die Elemente können mit der Maus verschoben werden. Doppelklick verschiebt ein Element in die andere Liste.'         
    }         
  };  
 
  aRankingTranslations = {          
    choicetitle: rankingTranslations[lang]['choice'],          
    ranktitle: rankingTranslations[lang]['rank'],          
    rankhelp: rankingTranslations[lang]['help']         
  };
 
  // Loop through all ranking questions  
  $('.question-container.ranking').each(function(e) {
    // Apply the drag-drop ranking interface
    var thisQID = $(this).attr('id').replace(/question/, '');
    doDragDropRank(thisQID, 1,1,1);
  });
});

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: Heinrich
The topic has been locked.
  • Heinrich
  • Heinrich's Avatar Topic Author
  • Offline
  • Senior Member
  • Senior Member
More
6 years 3 months ago #162540 by Heinrich
This looks great! Thank you so much!! I really appreciate your help.

Any idea why this did not work for me but for all others?
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
6 years 3 months ago #162542 by tpartner
Sorry, no, I have no clue why the built-in call for the function is not working.

I can see it in the source but, obviously, it wasn't fired for some reason.

All we did here is add another call for the same function in a different position on the DOM flow.

It's a mystery to me...

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: Heinrich
The topic has been locked.
  • Heinrich
  • Heinrich's Avatar Topic Author
  • Offline
  • Senior Member
  • Senior Member
More
6 years 3 months ago #162552 by Heinrich
Still, it's great that it's working now. Thank you so much! :)
The topic has been locked.

Lime-years ahead

Online-surveys for every purse and purpose