Welcome to the LimeSurvey Community Forum

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

Just show one question from randomized group, hide the others

  • Mazi
  • Mazi's Avatar
  • Offline
  • Official LimeSurvey Partner
  • Official LimeSurvey Partner
More
12 years 1 week ago #78720 by Mazi
Thanks for your solution and its documentation, Tom.

Johnny, please open a ticket at the bugtracker for the issues you noticed using my solution. It is weird that the result is not stored, this sounds like a bug.

Best regards/Beste Grüße,
Dr. Marcel Minke
Need Help? We offer professional Limesurvey support: survey-consulting.com
Contact: marcel.minke(at)survey-consulting.com
The topic has been locked.
  • mr2jswe
  • mr2jswe's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
12 years 1 week ago #78722 by mr2jswe
I have reported it to the Bugtracker just now. /J
The topic has been locked.
  • Mazi
  • Mazi's Avatar
  • Offline
  • Official LimeSurvey Partner
  • Official LimeSurvey Partner
More
12 years 1 week ago #78747 by Mazi

mr2jswe wrote: I have reported it to the Bugtracker just now. /J

Link?

Best regards/Beste Grüße,
Dr. Marcel Minke
Need Help? We offer professional Limesurvey support: survey-consulting.com
Contact: marcel.minke(at)survey-consulting.com
The topic has been locked.
  • mr2jswe
  • mr2jswe's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
12 years 1 week ago - 12 years 1 week ago #78759 by mr2jswe
Ah, ok here it is: Bugtracker .
Last edit: 12 years 1 week ago by mr2jswe.
The topic has been locked.
  • Mazi
  • Mazi's Avatar
  • Offline
  • Official LimeSurvey Partner
  • Official LimeSurvey Partner
More
12 years 1 week ago #78778 by Mazi
Thanks, we'll look into it and might ask some further questions at the bug ticket.

Best regards/Beste Grüße,
Dr. Marcel Minke
Need Help? We offer professional Limesurvey support: survey-consulting.com
Contact: marcel.minke(at)survey-consulting.com
The topic has been locked.
  • TMSWhite
  • TMSWhite's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 1 week ago #78805 by TMSWhite
This isn't a bug in LS, but perhaps highlights a need to clarify how best to use custom JavaScript with Expression Manager.

Your custom JavaScript should have been:
Code:
<script type="text/javascript">
<!--
$(document).ready(function() 
{
// Find a random number between 1 and 4
var randNumber = Math.floor(Math.random()*3 + 1);
$('input#answer12739X218X3728').val(randNumber);
checkconditions(randNumber,'12739X218X3728','text');
})
//-->
</script>

Checkconditions() must be called in order for EM to process the new value you set for the variable (e.g. to ensure that the new value is stored within the hidden variables that are submitted, and call the relevance equations to change which questions are visible).

So, the documentation for this workaround needs to be updated for 1.92+. It isn't adequate to just call:
Code:
$('#questionQQ').hide();
The topic has been locked.
  • Mazi
  • Mazi's Avatar
  • Offline
  • Official LimeSurvey Partner
  • Official LimeSurvey Partner
More
12 years 1 week ago - 12 years 1 week ago #78824 by Mazi

TMSWhite wrote: It isn't adequate to just call:

Code:
$('#questionQQ').hide();

Tom, that might lead to lots of problems because to my knowledge, lots of users are using
$('#questionQQ').hide();
...at their customized Javascript. Will all these calls not work properly?

Best regards/Beste Grüße,
Dr. Marcel Minke
Need Help? We offer professional Limesurvey support: survey-consulting.com
Contact: marcel.minke(at)survey-consulting.com
Last edit: 12 years 1 week ago by Mazi.
The topic has been locked.
  • TMSWhite
  • TMSWhite's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 1 week ago #78826 by TMSWhite
Mazi-

Yes, that might be a problem for users, depending upon what they are trying to do.

EM processes conditions/relevance based upon new 'relevanceG'+$gid, 'relevance'+$qid, and 'relevance'+$sgqa values, rather than trying to infer whether a question is relevant from whether or not it is hidden.

There are plenty of cases where users want to hide values without making them irrelevant (e.g. if they are passing parameters in via the command line), so question visibility and relevance are distinct attributes.

If the user doesn't care whether data is collected from a hidden question, then calling $('#questionQQ').hide() is fine. However, hiding a variable via $('#questionQQ').hide() will not cause any cascading conditional logic to execute.

Of course, users could customize their template.js to add a jQuery.live() function to call checkconditions() whenever they issue a $('#questionQQ').hide() event, but that may be overkill, since EM-itself calls $('#questionQQ').hide() when a question is irrelevant, so I'm not sure what would happen if you tried to add a jQuery.live() event.

Perhaps Tony or Denis could propose simple ways to support users in this situation.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 1 week ago #78922 by tpartner
The firing of checkconditions() was always required for dynamic conditions on a page.

Tom, are you saying that if checkconditions() is not called, the value of an input field that was modified by JavaScript will not be detected when the form submits (the "Next" button is clicked) for use in conditions on subsequent pages?

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
  • TMSWhite
  • TMSWhite's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 1 week ago #78924 by TMSWhite
As long as the proper javascript variable has its value set, the value will be submitted when the user clicks "next". In the example below, the user set the $('#answerSGQA") variable, which is the widget that lets the user see the value, but it is the $('#javaSGQA') variable that is typically the one submitted. checkconditions() not only triggers the conditional logic, but also tends to populate the $('#javaSGQA') variable if passed the value from the $('#answerSGQA') value.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 1 week ago #78928 by tpartner
Hmm, I don't see any $('#javaSGQA') element for text inputs.

Regardless, in my opinion, if a visible form element (text input, radio, checkbox, ...) is modified by JavaScript it should be detected on submit as it was in the past.

There may be many people running surveys with custom scripts expecting this behaviour.

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
  • TMSWhite
  • TMSWhite's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 1 week ago #78949 by TMSWhite
Tony-

I just checked all of the question types. The name="SGQA" attribute is always associated with the visual input element (which is usually an id="answerSGQA" code). So, the example in this thread (which changes $('#answerSGQA')) WILL submit the value.

However, EM uses the hidden $('#javaSGQA') variable to process conditions. So, if people change an $('#answerSGQA') value but don't call checkconditions(), the downstream conditions processing won't happen.

So, people's JavaScript should continue to work as expected.
The topic has been locked.

Lime-years ahead

Online-surveys for every purse and purpose