As far as I know, leaving the "Send basic admin notification email to" field will prevent the sending of the email.
↧
Is there a way to prevent "Detailed Administrative Email" from being sent - by: tpartner
↧
Refer in the question to a answer from the respondent - by: Shaq
Hi Christine,
This is possible with the function {INSERTANS:answid}.
answid : surveyidXgroupidXquestionid+answerid
For example, your survey id is 61679,your group id is 28 and your question id 68.
If you want, in the next question (id 69) to refer to the first answer in the previous question (id 68),
you'll have to add {INSERTANS:61679X28X681} to the question or answer menu. If you want to refer to the second answer.... {INSERTANS:61679X28X682}.
Your survey should be configured to display questions "group by group" and the question receiving the answer should be "optional".
Hope it will help you,
Regards,
Shaq
This is possible with the function {INSERTANS:answid}.
answid : surveyidXgroupidXquestionid+answerid
For example, your survey id is 61679,your group id is 28 and your question id 68.
If you want, in the next question (id 69) to refer to the first answer in the previous question (id 68),
you'll have to add {INSERTANS:61679X28X681} to the question or answer menu. If you want to refer to the second answer.... {INSERTANS:61679X28X682}.
Your survey should be configured to display questions "group by group" and the question receiving the answer should be "optional".
Hope it will help you,
Regards,
Shaq
↧
↧
Measure time needed to answer questions - by: tpartner
There is a "Save timings" setting to record the time spent on each page - manual.limesurvey.org/wiki/Creating_a_ne..._.26_data_management
↧
Change the message displayed when someone opts-out - by: tpartner
You should be able to customize the translation for that string (or create your own "language") - manual.limesurvey.org/wiki/How_to_transl...existing_translation
↧
Yes, you can: Run LimeSurvey under Android - by: fransmarcelissen
Just out of curiosity I tried whether it is possible to run limesurvey on my asus nexus 7 tabloid under android. And indeed: it is incredibly simple. I just installed ksweb (a webserver for android), including php and mysql, downloaded limesurvey, changed the permission of one directory, and the installation of limesurvey works. No rooting of other fuzz, just in a few minutes.
Unbelievable.
I won't use it, but that makes it possible to run limesurvey on a tabloid without internet connection.
Unbelievable.
I won't use it, but that makes it possible to run limesurvey on a tabloid without internet connection.
↧
↧
Answers: Use Placeholder instead of Default - by: msr_lance
Here's a revised version which uses jQuery's attributeStartsWith selector to generically find all elements with 'id' starting with "answer". Now we handle input, text area, etc.
var specialPrefix = "***";
$('[id^="answer"]').each(function() {
var value = $(this).attr('value');
if (value.lastIndexOf(specialPrefix, 0) == 0){
$(this)
.attr('value', '')
.attr('placeholder', value.substring(specialPrefix.length));
}
});
↧
Adding 00:00:00 to a date field... - by: elitim
Hi..that' exactly what I'm trying to do..but it doens't work for me..I did put datepicker, but I don't know how to input the result in the survey
Can you help ?? tks

↧
Send Emails Problem - by: andersonelias
Hi,
I have a Problem with sending Emails in Limesurvey. I installed Limesurvey on my own server(Apache) and use SMTP emails on another server to send out email invitation. Everytime I send a group of email (batch: 20 - 500 emails), people cannot access the survey page during this time(about 1-10min). After it finish sending the emails, people can go in again to do the survey.
Has anyone run into the same problem and already know the solution?
I appreciate any kind of help.
Many Thanks.
I have a Problem with sending Emails in Limesurvey. I installed Limesurvey on my own server(Apache) and use SMTP emails on another server to send out email invitation. Everytime I send a group of email (batch: 20 - 500 emails), people cannot access the survey page during this time(about 1-10min). After it finish sending the emails, people can go in again to do the survey.
Has anyone run into the same problem and already know the solution?
I appreciate any kind of help.
Many Thanks.
↧
how to change Label token - by: tpartner
You can change the translation string - manual.limesurvey.org/wiki/How_to_transl...existing_translation
↧
↧
mandatory questions based on a previous response - by: DWS
thanks for your help
the option of duplicate questions is not valid for me because the survey had a lot of questions
the option of duplicate questions is not valid for me because the survey had a lot of questions
↧
change text of resume later email - by: Ben_V
Hello,
I think this message is included in /application/librairies/Save.php
If you only use english lenguage you can edit directly the php file... but the normal way is to process exactly like for translations:
In all cases those changes may be overwritten after a LS major update
I think this message is included in /application/librairies/Save.php
If you only use english lenguage you can edit directly the php file... but the normal way is to process exactly like for translations:
- Download the last english .po & .mo files here
- place it in the folder locale/en/LC_MESSAGES
- edit the string(s) in your en.po fileusing Poedit software
- save (new .mo file will be automatically generated)
In all cases those changes may be overwritten after a LS major update
↧
Grouping & Change template - by: sahar
I've two questions:
1. Is it possible to create a group where all the group members are able to see, edit, modify
the same survey questions?
2. Is it possible to change the template of the surveylist for different group.
1. Is it possible to create a group where all the group members are able to see, edit, modify
the same survey questions?
2. Is it possible to change the template of the surveylist for different group.
↧
Suppress one option in an Array Dual Scale question - by: lsorg
Sorry but I can't edit my previous post.
Now I have edit the above code as follows:
With this code it hides every radiobox in the eight column in each row. But I did not find out how can only hides the radiobox in the eight column in the rows where I want. For example in the first and second row.
Any ideas? The above .javatb{SGQ}SQ001 doesn't work.
Best regards
lsorg
Edit:
Ok I have find it out.
With this code you could hide each cell in a scale:
SID = Survey ID
GID = Groupquestion ID
QID = Question ID
SQID= Subqestion ID
AID = Arry ID
[File Attachment: Snip20130730_1.png]
For example: ("#javatbd452595X22X775SQ001 .answer_cell_2_00A1 input.radio").hide();
My survey ID: 452595
Groupquestion ID: 22
Question ID: 775
Subquestion ID: SQ001
Arry: 2 (if you want hide cells in the first arry you have change it to 1)
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("#javatbd452595X22X775SQ001 .answer_cell_2_00A1 input.radio").hide();
})
</script>
Best regards
lsorg
Now I have edit the above code as follows:
$("#question{775} .answer_cell_2_00A1 input.radio").hide();
With this code it hides every radiobox in the eight column in each row. But I did not find out how can only hides the radiobox in the eight column in the rows where I want. For example in the first and second row.
Any ideas? The above .javatb{SGQ}SQ001 doesn't work.
Best regards
lsorg
Edit:
Ok I have find it out.
With this code you could hide each cell in a scale:
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("#javatbdSIDXGIDXQIDSQID .answer_cell_AID_00A1 input.radio").hide();
})
</script>
SID = Survey ID
GID = Groupquestion ID
QID = Question ID
SQID= Subqestion ID
AID = Arry ID
[File Attachment: Snip20130730_1.png]
For example: ("#javatbd452595X22X775SQ001 .answer_cell_2_00A1 input.radio").hide();
My survey ID: 452595
Groupquestion ID: 22
Question ID: 775
Subquestion ID: SQ001
Arry: 2 (if you want hide cells in the first arry you have change it to 1)
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("#javatbd452595X22X775SQ001 .answer_cell_2_00A1 input.radio").hide();
})
</script>
Best regards
lsorg
↧
↧
Question per group limit? some questions and "next" button not loaded... - by: blukas
Hi there
I am having a problem with a group that contains more than 200 questions and really a lot of conditions (see example below...most of the questions have conditions like that).
The problem is: Once the group page is loaded only 90% of the content is show, some questions at the bottom AND the control buttons ("back" "next" etc.) are not loaded.
Do I have a memory problem? Is this simply too much for my server? I changed the memory limit to 64mb in config-defaults.php that did not help.
Any ideas?
Thanks
Lukas
PS: I just uploaded our iPad template - check it out.
Installation INFO
Version 2.00+ Build 130708
PHP Version 5.3.21
EXAMPLE OF CONDITION (most of the 200+ questions in that group have conditions like this)
((schema.NAOK == "SO_SB")) OR ((schema.NAOK == "SO")) OR ((schema.NAOK == "THSO_KS_1")) OR ((schema.NAOK == "THSO_KS_2")) OR ((schema.NAOK == "BSSO_KS_1")) OR ((schema.NAOK == "BSSO_KS_2")) OR ((schema.NAOK == "BCSO_KS_1")) OR ((schema.NAOK == "BCSO_KS_2")) OR ((schema.NAOK == "PWSO_KS_1")) OR ((schema.NAOK == "BSMSO_KS_1")) OR ((schema.NAOK == "BMKSO_KS_1")) OR ((schema.NAOK == "ZHSO_KS_1")) OR ((schema.NAOK == "ZHSO_KS_2")) OR ((schema.NAOK == "ZHEXSO_KS_1")) OR ((schema.NAOK == "ZHEXSO_KS_2")) OR ((schema.NAOK == "KWSO_KS_1"))
buttons are loaded on the groups before
[File Attachment: ok.jpg]
buttons and some questions are not loaded in large group
[File Attachment: notok.jpg]
I am having a problem with a group that contains more than 200 questions and really a lot of conditions (see example below...most of the questions have conditions like that).
The problem is: Once the group page is loaded only 90% of the content is show, some questions at the bottom AND the control buttons ("back" "next" etc.) are not loaded.
Do I have a memory problem? Is this simply too much for my server? I changed the memory limit to 64mb in config-defaults.php that did not help.
Any ideas?
Thanks
Lukas
PS: I just uploaded our iPad template - check it out.
Installation INFO
Version 2.00+ Build 130708
PHP Version 5.3.21
EXAMPLE OF CONDITION (most of the 200+ questions in that group have conditions like this)
((schema.NAOK == "SO_SB")) OR ((schema.NAOK == "SO")) OR ((schema.NAOK == "THSO_KS_1")) OR ((schema.NAOK == "THSO_KS_2")) OR ((schema.NAOK == "BSSO_KS_1")) OR ((schema.NAOK == "BSSO_KS_2")) OR ((schema.NAOK == "BCSO_KS_1")) OR ((schema.NAOK == "BCSO_KS_2")) OR ((schema.NAOK == "PWSO_KS_1")) OR ((schema.NAOK == "BSMSO_KS_1")) OR ((schema.NAOK == "BMKSO_KS_1")) OR ((schema.NAOK == "ZHSO_KS_1")) OR ((schema.NAOK == "ZHSO_KS_2")) OR ((schema.NAOK == "ZHEXSO_KS_1")) OR ((schema.NAOK == "ZHEXSO_KS_2")) OR ((schema.NAOK == "KWSO_KS_1"))
buttons are loaded on the groups before
[File Attachment: ok.jpg]
buttons and some questions are not loaded in large group
[File Attachment: notok.jpg]
↧
can I randomize column display order? - by: Ben_V
Hello,
Maybe some good start here
Maybe some good start here
↧
Im trying to embed an mp3 player in my limesurvey - by: drewxone
thanks for the help tony! my survey can now play audio files but i used different code and add folder into my limesurvey. thanks again
↧
I want to hide name and email from response - by: DenisChenu
Hide to who ?
If it's for super admin or survey creator: not possible (without php hack).
For other admin : what theright on survey they have ? Did they have rigth on token ?
Denis
If it's for super admin or survey creator: not possible (without php hack).
For other admin : what theright on survey they have ? Did they have rigth on token ?
Denis
↧
↧
creating dynamic text input - by: tpartner
You can do that with JavaScript but it's a little tricky if both questions are on the same page. When do you trigger the hide/show function? On every keystroke in the input or when the input is changed (which requires the respondent to click elsewhere on the page)?
Probably simpler would be a workaround like this - manual.limesurvey.org/wiki/Workarounds:_...ble_Text.29_question
Probably simpler would be a workaround like this - manual.limesurvey.org/wiki/Workarounds:_...ble_Text.29_question
↧
filter colums - by: Ben_V
Some solution available in french forum
<script>
$(document).ready(function() {
if ("{INSERTANS:123X456X789SQ001}"=="YES")
$("#question{QID} table.question tbody tr").each(function(){
$(this).find('td').eq(1).css("display",'none');
});
$("#question{QID} table.question thead tr").each(function(){
$(this).find('th').eq(1).css("display",'none');
});
});
</script>
↧
Getting responses for a survey via Remote Control 2 API - by: mdekker
The get_summary will only report how many responses are available, not the response itself. So if you want responses, the only option you have is to use export_responses and parse csv output.
↧