Quantcast
Channel: Topics in Category: Can I do this with LimeSurvey? - LimeSurvey forums
Viewing all articles
Browse latest Browse all 17529

string instead of number in slider - by: tpartner

$
0
0
This script when inserted in the text of a slider question will replace the slider call-out values with custom labels. This demonstration script is for LS version 2.64.7 and uses a slider with values from 1-5.

<script type="text/javascript" charset="utf-8">
	$(document).ready(function(){
 
		// Identify this question
		var thisQuestion = $('#question{QID}');
 
		// Define the new labels
		var labels = {
			1: 'Is much less important than',
			2: 'Is less important than',
			3: 'Is as important as',
			4: 'Is more important than',
			5: 'Is much more important than'
		};
 
		// Initial slider state
		$('.question-item', thisQuestion).each(function(i) {
			var thisRow = $(this);
			$('input[type="text"]', thisRow).on('slideEnabled', function(event, ui) {
				$('.tooltip-inner', thisRow).addClass('hidden');
				$('.tooltip', thisRow).append('<div class="tooltip-inner inserted">'+labels[$('input[type="text"]', thisRow).val()]+'</div>');
				$('.tooltip', thisRow).css('margin-left', '-'+($('.tooltip', thisRow).width()/2)+'px');
			});
		});
 
		// Listener on sliders
		$('input[type="text"]', thisQuestion).on('slide slideStop', function(event, ui) {
			var thisRow = $(this).closest('.question-item');
			$('.tooltip-inner.inserted', thisRow).text(labels[$('input[type="text"]', thisRow).val()]);
			$('.tooltip', thisRow).css('margin-left', '-'+($('.tooltip', thisRow).width()/2)+'px');
			checkconditions($(this).val(), $(this).attr('name'), 'text');
		});
	});
</script>

Sample survey attached:

File Attachment:

File Name: limesurvey_survey_837377_2017-04-19.lss
File Size: 17 KB

Viewing all articles
Browse latest Browse all 17529

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>