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

Strange behaviour with missing responses - by: blocka

$
0
0
I have a survey with a numeric input type question (Q42) followed by an Array (1-5) -- Q43.

The array question (Q43) had a condition on it to only display if :

((Q42.NAOK > " "))

When testing this survey, if I left Q42 blank, then Q43 was hidden, and if I entered a value, Q43 was shown, as expected.

I understand in restrospect that I should have used !is_empty(Q42) instead ... however my testing showed that Q43 was displayed.

I activated the survey, and after collecting data from 10,000+ respondents, discovered that in all cases responses Q43 was blank. Q43 wasn't set to mandatory, but with the number of respondents, it seems unlikely that anyone who entered a value for Q42 would skip Q43.

Can anyone shed some light on what could have happened here? Does LS do any server side validation of EM rules on top of the client-side validation?

I am running LS version 2.73.0 b171219

I've attached a copy of the relevant segment of the survey.

GDPR and LimeSurvey - Delete me link - by: jelo

$
0
0
I have no information about what LimeSurvey GmbH (core developers) are preparing to reach GDPR compliance. A privacy policy textbox and URL link text was added to LimeSurvey core in the last weeks.

There is a pullrequest from an independent developer, which implement functionality to remove/reduce data in compliance with GDPR. This code is offered to be part of LimeSurvey core.
You can follow the discusssion here:
github.com/LimeSurvey/LimeSurvey/pull/1021

limitation of the community ce edition install on a local server - by: stefsurvey2018

$
0
0
Thanks Holch,

for the info, so i will continue my POC and preparing to deploy after that my different limesurvey site on my infrastructure.

Have a nice day !

Stephane

GDPR and LimeSurvey - Delete me link - by: jelo

Strange behaviour with missing responses - by: blocka

$
0
0
Thanks Joffm -- I see that you are right about the question by question -- very odd! Our survey was set to run Group by Group -- do you think we should open a ticket for the issue wrt to question by question?

Appears to be an issue in LS 3.0 as well.

How I can change the mandatory error message - by: okkhalid

$
0
0
Hello,


How I can change the mandatory error message?

One or more mandatory questions have not been answered. You cannot proceed until these have been completed.


Thanks,

How I can change the mandatory error message - by: Joffm

Strange behaviour with missing responses - by: blocka


Renaming uploaded file - by: poojark66

$
0
0
Hi everyone,

I want to rename the uploaded files to the survey based on other fields entry.

Keep the file original uploaded name. (secure it by removing specific characters)
Add a naming convention before the file name when storing it.

For example

#1 – The file name is: « Guideline for child and adolescents » and it is the third file uploaded by Italy ;
speaking of topics Reproductive ; Child and Adolescents. The file should be then stored as :
« ITA03R__CA- Guideline for child and adolescents »


I tried searching this topic in the forum but did not get any satisfactory answer

Renaming uploaded file - by: Joffm

Setting up dynamics on quota control - by: tpartner

Renaming uploaded file - by: jelo

$
0
0

Joffm wrote: while I do not see any reason in renaming the UPLOADED file

Reason #1: People are not aware of the renamed files inside the archive.
Reason #2: The files are not downloaded via the LimeSurvey function. Since LS isn't offering any automatic/triggered exporting, there is a need to transport uploaded files via a script.

Applying a file mask and allow to define filenames (not only for uploads but also for downloads), sound like a feature request. When such a systematic name scheme is applied, the storage of the files shouldn't be inside the webroot.

Thumbs up/down questions - by: csknfrt

$
0
0
I added to custom.css but it didn't work. How can I use this in LS versiyon 3.5.4+180320

tpartner wrote: In version 2.67.x, you can convert a list-radio question to thumbs up/down via CSS as follows:

1) Give the question a class "thumbs-question"

2) Add something like this to the end of template.css

.thumbs-question .answer-container {
    padding-top: 1em;
}
 
.thumbs-question .radio label, .checkbox label {
    min-height: 48px;
    line-height: 48px;
	margin: 10px 0;
}
 
.thumbs-question .radio label::before {
    background-color: transparent;
    border: 0 none;
    border-radius: 0;
    height: auto;
    width: auto;
    left: 0;
    transition: all 0.15s ease-in-out 0s;
	font-family: FontAwesome;
	font-size: 48px;
    content: "\f164";
	color: #CCC;
}
 
.thumbs-question .radio-list .answer-item.radio:nth-child(2) label::before {
    content: "\f165";
}
 
.thumbs-question .radio label:hover::before {
    color: #b9cc14;
	opacity: 0.5;
    filter: alpha(opacity=50);
}
 
.thumbs-question .radio-list .answer-item.radio:nth-child(2) label:hover::before {
    color: #e75041;
}
 
.thumbs-question .radio input[type="radio"]:checked + label::before {
    color: #b9cc14;
	outline: none !important;
	opacity: 1;
    filter: alpha(opacity=100);
}
 
.thumbs-question .radio-list .answer-item.radio:nth-child(2) input[type="radio"]:checked + label::before {
    color: #e75041;
}
 
.thumbs-question .radio label::after {
	display: none;
}

To handle the "scoring", you will likely need to use assessments and load equation questions with the values. See "Qcode.value - manual.limesurvey.org/Expression_Manager#Access_to_Variables

scoring an array - by: Joffm

$
0
0
Hi, Question
and what are you going to do?
You said you want to get a score out of the array questions.
G1Q00001, G2Q00002, G3Q00002, G4Q00002, G5Q00002

Okay, first thing:
Your codes of your answer options are text "A1", "A2". How do you sum them?
So you have to change them to numerical values.


Second: G1Q00002 has a relevance equation "((Question1.NAOK == "A2"))"
What is "Question1"?

I attach a very rough example - sorry, no more time, nbut you should see, how it works.

File Attachment:

File Name: survey_767447.lss
File Size: 63 KB


Joffm

GDPR and LimeSurvey - Delete me link - by: phplist

$
0
0
Nobody has mentioned pseudonymization yet -- would that be an easier approach to solving some of these issues?

One click to prefill and submit a survey using URL fields - by: tpartner

Exit intent survey (or what is the easiest means of web page integration?) - by: holch

$
0
0
I guess you will have to develop the script that triggers the survey to open in a layer/div. You can include a survey via an iframe or there is also "object", which I just recently found out about. However, I haven't tested if it really works with limesurvey or not.

But, to be honest, I don't think if it makes much sense to use Limesurvey for such a thing. Because you could just program this one exit survey with a normal HTML form quite quickly. There are no skip rules, there are not quota, there are no subsequent questions, so I think Limesurvey itself would be overkill.

Thumbs up/down questions - by: tpartner

$
0
0
I doubt it.

Given time,I may role it into a custom question theme but I don't really like to do that unless there is significant structure/behaviour changes required. This is pretty simply done with a little CSS.

GDPR and LimeSurvey - Delete me link - by: davebostockgmail

$
0
0

phplist wrote: Nobody has mentioned pseudonymization yet -- would that be an easier approach to solving some of these issues?



After the survey has closed then this would be possible with an additional field in the data as an internal reference # but it is not really possible before that time as you would need the actual email address to send out invites / reminders.

It is between the initial invite and close of survey that is important in this aspect as we would generally see request for opt out in the first hours/days of sending the invite email.

We generally keep surveys open for between 7 and 14 days dependent on sample size required and outgo size and we would send a reminder or 2 during this time period so would need the email address to do this.

GDPR and LimeSurvey - Delete me link - by: jelo

Viewing all 17529 articles
Browse latest View live


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