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

Answers random order - partial randomization & keeping distinct answers fixed - by: t6nnp6nn

$
0
0
found the problem

with the enhanced versiosn you should not set the random_order attribute to 1

The randomization is done with javascript. I set the random_order to 0 and it works in all versions i have now.

so as far as I understand there is a misleading manual - this should not be done with the enhanced version:

"Set the random_order question attribute to 1."

index onley shows visited question groups - by: pimvdberg

$
0
0
Dear people,

I'm about to make a survey with 27 question groups, not every group is
mandatory. So i would like to navigate/jump to other question groups with the index on the right.
I enabled the index in the presentation&navigation settings. Is there a solution for this?

Kind regards,
Pim

Reset User that opted out - by: tpartner

$
0
0
You can edit the tokens and change "Email status" from "OptOut" to "OK".

Placing limesurvey in i-frame issues in Safari - by: tpartner

$
0
0
What is the error message? I have tested in Safari 5 and have no problems.

Using the str_pad() function - by: LSCitizen

$
0
0
Hello,
I am currently using Version 2.00+ Build 130913 and want to use the str_pad() function in one of my surveys. When I attempt to add the pad_type attribute STR_PAD_LEFT, the value displays in red text as an undefined variable.

Is there another way to use this function in LimeSurvey?

Adding responses for a survey via Remote Control 2 API - by: Anurag

$
0
0
Another gentle bump. I really need this guys :dry:

Placing limesurvey in i-frame issues in Safari - by: tpartner

$
0
0
Does the survey work in Safari without the iframe (in the top frame)?

Try using the shipped default template and if you still have the problem attach an export of a sample survey for us to test.

index onley shows visited question groups - by: tpartner

$
0
0
That is the normal behaviour for the index in 2.0 - it only shows previously visited groups.

In 2.05, you will be able to select "incremental" or "full" index. "Full" will show all groups.

Can I add an option "other" to an "array" question type? - by: rambo

$
0
0
Hi,
i am having the same problem? did you find solution? did you add "other" field in array?
i am using limesurvey 2.00+

Thanks you!

hidden question auto answered based on url - by: davideunipi

$
0
0
I wish to create a survey with a hidden question, and limesurvey should fill the answer with a value read from the url, e.g.
mylimesurveysite.com/index.php/123456 is the standard url for my survey
I would like to navigate to mylimesurveysite.com/index.php/123456/abcd where I find the same 123456 survey and the question n. 1 is automatically filled with the answer "abcd"

I suppose that I will need some hacking on the code, anyone has alreay tried something similar?

Thank you
Davide Borgioli
Università di Pisa - Italy

Can I add an option "other" to an "array" question type? - by: rambo

$
0
0
it will be good to know... but finally I change question it is easier :)

ODBC connection to LimeSurvey and Excel - by: capson

how to edit email content???? where are those files? - by: xabi_r

$
0
0
Hi there!!
I want to edit the content of the email that is sent to new users. I've been trying to find the location of those files for ages...If anyone could help me please...

Thanks!!

Multiplechoice matrix question? - by: pcerny

$
0
0
Hi Tpartner,
thanks for this post, it is really nice solution, although I was little confused about the "number type question" at the beginning.
P.

randomization questions - by: DenisChenu

$
0
0
No,

:). Please retry (or put on another upload system ;) )

Last Option In Array (Numbers) (Checkboxes) Row Excludes All Others - by: tpartner

$
0
0
Try this. Note that if using 1.92+, you do not need to replace "{QID}" - this tag will automatically insert the question ID:

<script type="text/javascript" charset="utf-8">	
	$(document).ready(function() {
		// Call the exclude function using question ID
		excludeOpt ({QID});
	});
 
	// A function to make the last option in each array row exclusive
	function excludeOpt (qID) {
 
		var thisQuestion = $('#question'+qID)
 
		// Add some classes to the checkbox cells
		$('table.question tbody td', thisQuestion).addClass('normalOpt');
		$('table.question tbody tr', thisQuestion).each(function(i) {
			$('.normalOpt:last', this).removeClass('normalOpt').addClass('exlusiveOpt')
		});
 
		// A listener on the checkbox cells
		$('table.question tbody td', thisQuestion).click(function (event) {
 
			// Set some vars
			var thisRow = $(this).closest('tr');
 
			// Uncheck the appropriate boxes in a row
			if ($(this).hasClass('normalOpt')) {
				$('.exlusiveOpt input[type=checkbox]', thisRow).attr('checked', false);
			}
			else {
				$('.normalOpt input[type=checkbox]', thisRow).attr('checked', false);
			}
		});
 
		// A listener on the checkboxes
		$('table.question tbody td input[type=checkbox]', thisQuestion).click(function (event) {
 
			// Set some vars
			var thisRow = $(this).closest('tr');
			var thisCell = $(this).closest('td');
 
			// Uncheck the appropriate boxes in a row
			if ($(thisCell).hasClass('normalOpt')) {
				$('.exlusiveOpt input[type=checkbox]', thisRow).attr('checked', false);
			}
			else {
				$('.normalOpt input[type=checkbox]', thisRow).attr('checked', false);
			}
		});
	}	
</script>


I have updated the workaround - manual.limesurvey.org/wiki/Workarounds:_..._Excludes_All_Others

Quality of Survey Timings - by: tpartner

Section with Radios and Comment Boxes? - by: trivender

$
0
0
I always suggest to have a group by group display layout and create a seprate group for each question. This will be extra work but you will get flexiblity to create your question by using more than more lime survey question types.

U can combine mutiple short text nd radio queations in a group..u can then hide the queation text areas of desired questions using jquery.

Different version of "end message" according to user's selection - by: holch

$
0
0
You might be able to do that via the Expression Manager.

Different version of "end message" according to user's selection - by: Ben_V

$
0
0
Hello,
I think it's the job of the assesment engine :unsure:
If you can associate some weight to your answers, it's easy to display different assessment messages in the survey completed page...
If not, use expression manager
Viewing all 17529 articles
Browse latest View live


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