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

How to make sub-questions from a question? - by: ymca

$
0
0

Joffm wrote: Hi,
The question code is always a code you entered someday.

As far as I see this question is of type "long free text".
So where do you want to add subquestions. Only questions of type "multiple" and "array" have subquestions.

But it's all more or less useless as long as you do not attach a lss export of your survey.

Joffm

It was just an example picture from limesurvey site so I'll know that we are talking on the same "what is a question code".
I'm 97% done and I'll attach it.

How can a user regain access to results from an anonymous survey? - by: Sweden

$
0
0
Many thanks again and nice plugin (btw. after downloading from gitlab I had to remove "-master" from the folder name to make it work - perhaps it can help others, although it's probably obvious.)

Hope you have time for a few quick questions about your plugin "generateUniqId":

  1. The unique ID is very long - is it possible to make it e.g. 10 characters?

  2. Would it also be easy to change your code so your plugin only uses certain alphanumeric characters (for example, the letters z, I, and O can easily be mistaken for the numbers 2, 1, and 0).

  3. Perhaps a stupid question, but are the unique IDs truly unique - in other words, does your plugin check for duplicates?


It would be great to have plugin settings for my first two questions above, either in plugin "configure" or in the text question. Just an idea that you might consider, if you are bored one day... :cheer:

How can a user regain access to results from an anonymous survey? - by: DenisChenu

Add tick marks and extra label to slider of multiple numerical input question) - by: tpartner

$
0
0
Try this...

JavaScript

<script type="text/javascript" charset="utf-8">
	$(document).on('ready pjax:scriptcomplete',function(){
 
		var ticksArray = [
			[0, 'Label left'],
			[20, ''],
			[40, ''],
			[60, ''],
			[80, ''],
			[100, 'Label mid'],
			[120, ''],
			[140, ''],
			[160, ''],
			[180, ''],
			[200, 'Label right'],
		];
 
		insertSliderTicks('{QID}', ticksArray);
    });
 
	/* Insert Slider Tick Marks */
	function insertSliderTicks(qID, ticksArray) {
		var thisQuestion = $('#question'+qID);
 
		$(thisQuestion).addClass('with-inserted-ticks');
 
		$('input:text', thisQuestion).on('slideEnabled',function(){ 
			var thisSlider = $(this);
			var thisItem = $(thisSlider).closest('li');
			var thisMin = $('.slider-handle:eq(0)', thisItem).attr('aria-valuemin');
			var thisMax = $('.slider-handle:eq(0)', thisItem).attr('aria-valuemax');
			var thisRange = thisMax - thisMin;
			$.each(ticksArray, function(i, val) {
				var tickRelativePosition = val[0] - thisMin;
				var tickPercent = (tickRelativePosition/thisRange)*100;
 
				// Insert tick marks
				$('.slider-handle:eq(0)', thisItem).before('<div class="inserted-tick left-'+tickPercent+'" style="left: '+tickPercent+'%">\
													<div class="tick-text">'+val[1]+'</div>\
												</div>');
			});	
		});
	}
</script>

CSS

<style type="text/css">
 
	/* Slider Tick Marks */
 
	@media only screen and (min-width: 768px) {
 
		.with-inserted-ticks .slider-container {
			padding-right: 50px;
			padding-left: 50px;
		}
	}
 
	.with-inserted-ticks .slider-item {
		margin-bottom: 50px;
	}
 
	.with-inserted-ticks .slider-container .help-block {
		margin: 25px 0 0 -20px;
		width: 40px;
		text-align: center;
	}
 
	.with-inserted-ticks .slider-container .help-block.pull-right {
		margin: 25px -20px 0 0;
	}
 
	.inserted-tick {
		position: absolute;
		top: 50%;
		height: 10px;
		width: 2px;
		margin-top: -5px;
		margin-left: -1px;
		background-color: #DDDDDD; 
	}
 
	.inserted-tick.left-0,
	.inserted-tick.left-100 {
		background-color: transparent;
	}
 
	.inserted-tick .tick-text {
		position: absolute;
		top: 150%;
		width: 100px;
		margin-left: -50px;
		color: #000000;
		text-align: center; 
	}
 
	@media only screen and (max-width: 768px) {
 
		.inserted-tick.left-0 .tick-text {
			margin-left: 0px;
			text-align: left; 
		}
 
		.inserted-tick.left-100 .tick-text {
			margin-left: -100px;
			text-align: right; 
		}
	}
</style>



Sample survey attached:

File Attachment:

File Name: limesurvey_survey_549381_2020-03-25.lss
File Size: 21 KB

Can I add a stimulus presentation in a question ? - by: NataliaM09

$
0
0
Hi,

Thank you so much! It worked great! You saved me a LOT of time.

Have a good day, sir.

Automatic creation of LDAP users - by: wf_121

$
0
0
Hello there,

So, I've seen that, in the past, to use LDAP you needed to create every user in the LimeSurvey web interface in order for them to access their LDAP credentials.

Right now I can only make LDAP work this way, but I thought I'd ask, just to be 100% sure: with version 3.22.8, do we already have automatic creation of LDAP users?

Thank you!

How to pick x random questions from a bucket of y - by: holch

$
0
0
The counter at the start considers all questions in your survey, no matter their relevance (which in many cases can change, depending on your relevance equations). My solution would be to either put my own count or leave the count out completely. Because in my opinion it doesn't help much anyway.

You can have a survey with two questions, both with enormous lists of answer options, e.g. 100 each. This will take significantly longer to answer than a survey with 20 YES/NO questions.

PDF Export with "End Survey" PDF layout? - by: gabrieljenik

$
0
0
Hi frafor!

I think Marcel Minke (Limesurvey partner) has developed a plugin that allows you to print an answer from the answer panel.

Also, in EncuestaBIZ we have developed a plugin that automatically generates a PDF file for a given response. You can configure a custom logo, some colors, footer and page numbering, among other features.
Maybe the plugin can be useful for you.

Please take a look at our solution:
www.encuesta.biz/en/producto/limesurvey-pdf-response/

Also, check out our solution for 360 surveys. It allows a unified and traceable feedback based on the opinion of several people:
www.encuesta.biz/en/360-degree-feedback/

Regards!

Array of Dates in Limesurvey 3.x - by: slarson55

$
0
0
Thank you Tony!

I implemented it and was even able to use the 'LT' code next to format to get it to be a time picker only. It looks really good.

Add tick marks and extra label to slider of multiple numerical input question) - by: bottleneck

$
0
0
Best thanks, the solution works great! You made my day.

Customize user login page - by: tpartner

Automatically proceed to next question after selecting answer - by: Joffm

$
0
0
Hi,

I added your snippet for list-radio questions

You used the correct snippet to insert into "custom.js"?
$(document).on('ready pjax:scriptcomplete',function(){ 
	$('.list-radio input[type="radio"]').on('click', function() {
		$('#ls-button-submit').trigger('click');
	});
});

Any idea what I might be doing wrong?

No. We cannot see what you are doing, unless we see at least your lss export.

Joffm

Deleting survey - by: ymca

Automatically proceed to next question after selecting answer - by: tpartner

$
0
0
I tested and the code works perfectly for list-radio questions in that survey. Something else in your theme may be introducing JavaScript errors.

Customize user login page - by: Hurley11Man

$
0
0
Thank you very much! This works perfectly!

Where to find audio recordings - by: holch

$
0
0
I searched for this code and from what I see on cameratag.com/ you probably need to have an account with them to use this and probably the audios would be stored on there servers.

Where to find audio recordings - by: ouzhantekin

$
0
0
Oh, I see. I thought it was an html code that anyone could use to record and download audio free of charge. Very naive of me! I wish Lime Survey had this feature itself.

By the way, I found that code here in one of the posts.

Thanks again for your reply. If you know any other means to enable survey participants to record audio, please do share.

Oguzhan

Can I save part of an IP address? - by: ymca

$
0
0
Hi,

Instead of saving the entire IP number, can I save just the start so I will not break the privacy laws?
I have seen in matomo that they can save just IP number of the country the users are coming from.
Can we do it in LimeSurvey?

Deleting survey - by: Joffm

$
0
0
If your LS installation is self hosted, the survey and the answer table are deleted immediately.
But manually you have to delete the "old" answer tables lime_old_survey_{SID}_{datetime}, which are created while deactivating a survey.

This
Attention :

We highly recommend our users to export the survey and its corresponding responses table before deleting it.
The responses table is getting archived and it can still be recovered for a limited period of time. However, for the sake of simplicity and to avoid further import-related complications, we recommend our users to also backup the responses table.


seems to refer to people with a LimeSurvey GmbH hosted installation.

Joffm

Where to find audio recordings - by: Joffm

Viewing all 17529 articles
Browse latest View live


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