Welcome to the LimeSurvey Community Forum

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

Another disable "next" button question

  • holch
  • holch's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
9 years 1 week ago #118216 by holch
Replied by holch on topic Another disable "next" button question
But 7 is bigger than 5, thus it should show the button. So I guess this is correct behaviour...

I answer at the LimeSurvey forum in my spare time, I'm not a LimeSurvey GmbH employee.
No support via private message.

The topic has been locked.
More
9 years 6 days ago #118227 by samarta
Replied by samarta on topic Another disable "next" button question
Hi,

what i meant is: I've changed the script to
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {

$('#movenextbtn').hide();
if(7>5)
{
$('#movenextbtn').show();
}

});
</script>

And it worked.


My question is if the sintax of the following line is correct:
if(($('#answer858668X1964X50571')- $('#answer858668X1964X50572')) >5'))
{
$('#movenextbtn').show();
}

Because is not working as I expect.



Thanks,

João
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
9 years 6 days ago - 9 years 6 days ago #118232 by tpartner
Replied by tpartner on topic Another disable "next" button question
Try this (assuming the questions are text type):

Code:
<script type="text/javascript" charset="utf-8">
  $(document).ready(function() {
 
    $('#movenextbtn').hide();
 
    if(($('#answer858668X1964X50571').val() - $('#answer858668X1964X50572').val()) >5')) {
      $('#movenextbtn').show();
    }
  });
</script>

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Last edit: 9 years 6 days ago by tpartner.
The topic has been locked.
More
9 years 6 days ago #118233 by samarta
Replied by samarta on topic Another disable "next" button question
Hi ,
anf if the questions are numerical type?

still using .val() ?

Thanks
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
9 years 6 days ago #118234 by tpartner
Replied by tpartner on topic Another disable "next" button question
Yes, numerics also use text type inputs.

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The following user(s) said Thank You: samarta
The topic has been locked.
More
9 years 6 days ago #118237 by samarta
Replied by samarta on topic Another disable "next" button question
Thank you very much.
The topic has been locked.
More
9 years 6 days ago #118242 by samarta
Replied by samarta on topic Another disable "next" button question
Hi,

Can get this stuff work.

I made code simplier and still does not work
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {

$('#movenextbtn').hide();
if($('#answer858668X1963X50568').val()>5){
$('#movenextbtn').show();
}
});
</script>

I introuced this code on the source of a question of group (1964) to see if the problem was in putting the source of the same group.

I can't get this working.

I appreciate any help.

I've tried also to if($('#answer858668X1963X50568').val()>5') but the last ' does not closes any previous '


Thanks

João
The topic has been locked.
More
9 years 6 days ago #118243 by Ben_V
Replied by Ben_V on topic Another disable "next" button question
I don't know the software version you are using, but you can maybe try a mix JS/EM

Benoît

EM Variables => bit.ly/1TKQyNu | EM Roadmap => bit.ly/1UTrOB4
Last Releases => 2.6x.x goo.gl/ztWfIV | 2.06/2.6.x => bit.ly/1Qv44A1
Demo Surveys => goo.gl/HuR6Xe (already included in /docs/demosurveys)
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
9 years 6 days ago #118244 by tpartner
Replied by tpartner on topic Another disable "next" button question
Do you have the correct identifier for the input ('#answer858668X1963X50568')?

Can you activate a test survey?


.

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
More
9 years 6 days ago #118245 by Ben_V
Replied by Ben_V on topic Another disable "next" button question

tpartner wrote: Do you have the correct identifier for the input ('#answer858668X1963X50568')?

Sometimes I feel a kind of {nostalgia}...

Benoît

EM Variables => bit.ly/1TKQyNu | EM Roadmap => bit.ly/1UTrOB4
Last Releases => 2.6x.x goo.gl/ztWfIV | 2.06/2.6.x => bit.ly/1Qv44A1
Demo Surveys => goo.gl/HuR6Xe (already included in /docs/demosurveys)
The topic has been locked.
More
9 years 5 days ago #118260 by samarta
Replied by samarta on topic Another disable "next" button question
Hi,

Here is the test survey:
surveys.uc.pt/index.php/865947/lang-en



Thanks,


João
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
9 years 5 days ago #118261 by tpartner
Replied by tpartner on topic Another disable "next" button question
Oh, I see what you're doing now.

You'll need a listener on that "Age" input. Also we can automatically detect the input so you won't need to modify the SGQA for different surveys.

Place this in the source of the "Age" question:

Code:
<script type="text/javascript" charset="utf-8">  
  $(document).ready(function() {
 
    // Identify this question
    var thisQuestion = $('#question{QID}');
 
    $('#movenextbtn').hide();
 
    // Check the initial value of the age question
    if($('input.text', thisQuestion).val() != '' &amp;&amp; $('input.text', thisQuestion).val() < 18){
      $('#movenextbtn').show();
    }
 
    // A listener on the age question
    $('input.text', thisQuestion).on('keyup change paste', function() {
      setTimeout(function() {
        if($('input.text', thisQuestion).val() != '' &amp;&amp; $('input.text', thisQuestion).val() < 18){
          $('#movenextbtn').show();
        }
        else {
          $('#movenextbtn').hide();
        }
      }, 100);
    });    
  });
</script>

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The following user(s) said Thank You: samarta
The topic has been locked.

Lime-years ahead

Online-surveys for every purse and purpose