Welcome to the LimeSurvey Community Forum

Ask the community, share ideas, and connect with other LimeSurvey users!

Search Results (Searched for: multiple)

  • domec_
  • domec_'s Avatar
15 Jun 2023 14:03
Sorry but i don't understand what do you mean with "why didn't you not only ignore the questions at the beginning but removed them"

In addition, i don't know if i have the right to insert javascript, how can i check that?

Thank you
  • Joffm
  • Joffm's Avatar
15 Jun 2023 12:54
Hi,
why didn't you not only ignore the questions at the beginning but removed them?

If you used the correct script (28.3) and you have the rights to insert javascript, you should show us what you did exactly by sending a lss export.

Joffm
  • domec_
  • domec_'s Avatar
15 Jun 2023 12:44 - 15 Jun 2023 12:45
Hello,

I have a multiple question with randomized order and I would like to fix an exclusive option "none of these"  at the end, before the option other


I tried to put the script in the source of question using the code in the following link (LS 3.X)
Workarounds: Manipulating a survey at runtime using Javascript - LimeSurvey Manual

Thanks
Domec
  • aleks!
  • aleks!'s Avatar
13 Jun 2023 17:13 - 13 Jun 2023 17:26
Please help us help you and fill where relevant:
Your LimeSurvey version: 5.6.25
Survey theme/template: Vanilla Theme
==================
Hi!
I'm a relatively new to LimeSurvey so the answer to this might be very obvious to some but I couldn't find the info elsewhere: I'm setting up a survey that contains an assessment part for which I am using the array by column question type. So, this assessment contains sub-questions with multiple answer options, but there's only one correct answer for each sub-question. At first I thought that I could add an assessment value to each correct answer, but this does not take into account the column under which the answer is selected (there's only one correct answer per column and per row, and each correct answer increases the participants' score by 1).
From what I've found, I can instead set this condition:
{sum(
IF(Q1_SQ001 =="A",1,0),
IF(Q1_SQ002=="B",1,0),
IF(Q1_SQ003=="X",1,0),
IF(Q1_SQ004=="Y",1,0)
)}
However, I could not find any information about whether this score will be stored in the final data file, or how I would need to go about storing the score, or if it's even possible to store the score or whether it's just something used for feedback purposes. How would I go about storing the score with the rest of the data (if that's possible)?

 
  • rockyist
  • rockyist's Avatar
09 Jun 2023 16:58 - 09 Jun 2023 16:58
For your question[why array(numbers)], yes. Because I want to ask about both access and egress in one multiple-choice question. Otherwise, I have no other choices.

For other users who have the same kind of question, you can check ( forums.limesurvey.org/index.php/forum/ca...ions?start=12#244110 ) for further information.
  • Joffm
  • Joffm's Avatar
09 Jun 2023 16:16 - 09 Jun 2023 16:49

Here comes one new question.

Yes, it is a new question, not related to "Can I use answer of ranking question in following questions?"

Why don't you open a new thread?
I am not surprised to read frequently "I searched the forum but did not find" if a question about random select of multiple choices is hidden in a thread about ranking.

Joffm

But nevertheless, here an easy solution without javascript.
 

File Attachment:

File Name: limesurvey...8461.lss
File Size:84 KB


But are you sure, you use an array(numbers)?
 
  • Joffm
  • Joffm's Avatar
08 Jun 2023 14:05
Please, read the manual about
[url] manual.limesurvey.org/ExpressionScript_-...code_variable_naming [/url]

And see the examples on the statFunction page (7th is nearly what you need)

Remember:
You count IF the subquestion is answered.
I hope you know that in a multiple question the selected subquestion is stored as "Y", the ot selected as "".

Joffm
  • ftrojet
  • ftrojet's Avatar
08 Jun 2023 11:47
Aidez-nous à vous aider et remplissez les cases appropriées :
Votre version de LimeSurvey : Version de votre LimeSurvey : Version 5.4.5+221010
Votre propre serveur ou LimeSurvey Cloud : selfhosting
Thème :

==================
Bonjour,

Je cherche a réaliser un groupe de question avec des choix multiples (bootstrap button).
Lorsque qu'un participant sélectionne une réponse, celle ci ne doit plus être accessible pour les autres participants.
Quelle est la procédure à suivre ? 
  • ftrojet
  • ftrojet's Avatar
08 Jun 2023 09:20
Please help us help you and fill where relevant:
Your LimeSurvey version: Version 5.4.5+221010
Own server or LimeSurvey hosting: Own server
Survey theme/template:
==================
Hi,
I want to hide answer of multiple choice (boostrap button) if select by another participant.
After search, i don't find the solution.
 
 
  • amilcar_pg
  • amilcar_pg's Avatar
06 Jun 2023 23:38
Thanks for your advice Joffm!

I'll do as you suggested.
  • Joffm
  • Joffm's Avatar
06 Jun 2023 22:14
Hi,
the best is to split the group into 6 groups, each with three questions
Text display to display th image
multiple numeric
multiple nuumeric for the ageguess
you may merge the questions with the css classes "no-question" and "no-bottom"
The randomization by randomization group name and by random number stay the same, only on group level.
This way you can limit the ranges by the settings without the need of validation,

Otherwise you have to validate each subquestion, like
RostoHa_study.NAOK<11 and RostoHa_honest.NAOK<11 and... and RostoHa_ageguess.NAOK<100

Joffm
  • Orbit-Reiter
  • Orbit-Reiter's Avatar
06 Jun 2023 14:04 - 06 Jun 2023 14:05
Please help us help you and fill where relevant:
Your LimeSurvey version: Community Edition Version 6.0.4+230427
Own server or LimeSurvey hosting: own
Survey theme/template: fruity
==================
Hello!
I have been using the following script (from here ) to fix positions at the bottom (below "Other"-option) in version 3.
Code:
<script type="text/javascript" charset="utf-8">
  $(document).on('ready pjax:scriptcomplete',function(){
 
    // Identify this question
    var qID = {QID};
    var thisQuestion = $('#question'+qID);
 
    // Define the sub-question codes to be placed last
    var lastItems = ['SQ006', 'SQ007', 'SQ008'];
 
    // Loop through those sub-question codes
    $.each(lastItems, function(i, val) {
      // Move that item to the end of the list
      // Multi-choice question
      if($(thisQuestion).hasClass('multiple-opt')) {
        $('.question-item[id$=X'+qID+val+']', thisQuestion).appendTo($('.question-item[id$=X'+qID+val+']', thisQuestion).parent());
      }
      // Array question
      if($(thisQuestion).hasClass('array-flexible-row')) {
        $('.answers-list[id$=X'+qID+val+']', thisQuestion).appendTo($('table.subquestion-list tbody:last', thisQuestion));
      }
      // List-radio question
      if($(thisQuestion).hasClass('list-radio')) {
        $('.answer-item[id$=X'+qID+val+']', thisQuestion).appendTo($('.answer-item[id$=X'+qID+val+']', thisQuestion).parent());
      }
    });  
  });
</script>

It seems it's not working anymore (at least for multi-opt) but I can't find out what to change.


Moreover, I found very strange behaviour of the option I set as an exclusive option. It always is fixed in a position when randomising (even without any script), but always one above its position in the answer list. So when I set the second option as exclusive, it fixes it to the first position. If I set the last option as exclusive, its fixed in the second to last option. Is this a bug?
  • amilcar_pg
  • amilcar_pg's Avatar
05 Jun 2023 22:52
Sorry about that holch.

It's own server, not hosted by LimeSurvey.
  • amilcar_pg
  • amilcar_pg's Avatar
05 Jun 2023 22:50
Dear Joffm ,

Sorry about the wrong file.

Im attaching the one you've asked for.

thanks in advance for your assistance.

If you need anything else, please let me know.
  • holch
  • holch's Avatar
05 Jun 2023 21:42

Own server or LimeSurvey hosting: YES


This is a good one. Haven't seen this before.
Displaying 736 - 750 out of 761 results.

Lime-years ahead

Online-surveys for every purse and purpose