- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<script type="text/javascript" charset="utf-8"> $(document).on('ready pjax:complete',function() { aRankingTranslations = { choicetitle: 'Ihre Auswahl', ranktitle: 'Ihre Rangfolge', rankhelp: '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.' }; doDragDropRank({QID}, 1,1,1); console.log('Ranking applied'); }); </script>
$(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); }); });