Welcome to the LimeSurvey Community Forum

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

smiley face without radiobutton and submitting

More
12 years 4 months ago #70723 by floccs
You can also remove the lines with removeClass and addClass since the form is submitted automatically and you don't need styling of the selected image
The topic has been locked.
More
12 years 4 months ago #70727 by toma
I am not sure did make myself clearly. Form submits itself before user clicks on a smiley face. So right now this (combination of two alternatives) doesn't work.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 4 months ago #70730 by tpartner
Replied by tpartner on topic smiley face without radiobutton and submitting
I don't understand why you need to combine the two solutions if you want to imediately submit the form and don't need the "selected" effects.

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
12 years 4 months ago #70731 by toma
Reason is that it would be nice, if images would be links so cursor would change above them.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 4 months ago #70732 by tpartner
Replied by tpartner on topic smiley face without radiobutton and submitting
You can do that with CSS:
Code:
#questionQQ label img {
  cursor: pointer;
}

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
12 years 4 months ago #70733 by toma
That is so true...

Thanks!
The topic has been locked.
More
12 years 4 months ago #70735 by toma
"Luckily" there is something else which doesn't work with this:
Code:
<script type="text/javascript" charset="utf-8">
 
  $(document).ready(function(){
 
    $('#question61 label img').click(function(){
      setTimeout(function() { 
        $('form#limesurvey').submit();
      }, 500);
    });
  });
 
</script>

Scaling seems to be impossible (or at least it needs something that I cannot do). But with that another method it can be done, because I can put html code to that. Maybe some more experienced person can do same with this one also.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 4 months ago #70736 by tpartner
Replied by tpartner on topic smiley face without radiobutton and submitting

some more experienced person

????

"Scaling" has nothing to do with this. That would depend on what images you put in the labels.

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
12 years 4 months ago - 12 years 4 months ago #70738 by toma
With "some more experienced person" I meant that maybe some one else can do these things easily, but I cannot because I am not very experienced in these stuffs.

Anyway with first method I could do something like this (I haven't check if this is proper code, but maybe idea can be seen from this):
Code:
<div>
   <div style="width:30%; background-image: url(/../images/smiley1.);>
      <a href="javascript:selectface(0);"><img class="face num0" src="emptyimage" /></a>
   </div>
   <div style="width:30%; background-image:url(../images/smiley2.);>
      <a href="javascript:selectface(1);"><img class="face num1" src="emptyimage" /></a>
   </div>
   <div style="width:30%; background-image: url(/../images/smiley3.);>
      <a href="javascript:selectface(2);"><img class="face num2" src="emptyimage" /></a><br/>
   </div>
</div>
 
<script>
 
    function selectface(face) {
 
        $('.face').removeClass('selected');
        $('#questionID input.radio:eq('+face+')').attr('checked', true);
        $('.num'+face).addClass('selected');
    }
 
    $(document).ready(function() {
 
        $('#questionID .survey-question-answer ').hide();
        $('#questionID .questionhelp ').hide();
 
        selectface($('#questionID input.radio:checked').val() - 1);
 
    });
 
AND some script for submitting page after clicking smiley face...
 
</script>

But now is time to enjoy weekend... If you like you can/may post more ideas etc, but I will continue this task on monday. Have a nice weekend, folks!
Last edit: 12 years 4 months ago by toma.
The topic has been locked.
More
12 years 4 months ago #70803 by toma
Ok.

Now I have this:
Code:
<div style="width:100%;">
 
<div style="width:30%; float:left; margin-left: 2%; margin-right:1%">
<a href="javascript:selectface(0);" onClick="$('form#limesurvey').submit();"><img class="face num0" src="/kysely/hymio/naama3.png" width="100%" /></a>
</div>
<div style="width:30%; float:left; margin-left: 2%; margin-right:1%">
<a href="javascript:selectface(1);" onClick="$('form#limesurvey').submit();"><img class="face num1" src="/kysely/hymio/naama2.png" width="100%" /></a>
</div>
<div style="width:30%; float:left; margin-left: 2%; margin-right:1%">
<a href="javascript:selectface(2);" onClick="$('form#limesurvey').submit();"><img class="face num2" src="/kysely/hymio/naama.png" width="100%" /></a><br/>
</div>
</div>
 
<script type="text/javascript" charset="utf-8">
 
    function selectface(face) {
        $('.face').removeClass('selected');
        $('#question66 input.radio:eq('+face+')').attr('checked', true);
        $('.num'+face).addClass('selected');
 
    }
 
    $(document).ready(function() {
 
        $('#question69 .survey-question-answer ').hide();
        $('#question69 .questionhelp ').hide();
 
        selectface($('#question69 input.radio:checked').val() - 1);
 
    });
 
 
</script>
 
<style>
.face {
border:0px solid white;
}
 
.selected {
border:4px solid #cc0000;
}
</style>

Well I haven't tried it on real survey, but it seems work fine (images are scaled and work like submit-buttons) thanks to you.

Next problem is that questionID is different every time I import this question to new survey. Is there something to do about it?
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 4 months ago - 12 years 4 months ago #70821 by tpartner
Replied by tpartner on topic smiley face without radiobutton and submitting
One solution to get around the problem of IDs being changed in the export/import process is to add a script to identify the question div that contains the script. You can then set a variable with the question's ID for use in following scripts.

Add the following to the source of a question:
Code:
<script type="text/javascript" charset="utf-8">
 
  var thisQID = thisQuestionID();
 
  // A function to return the question ID number of a script's parent question
  function thisQuestionID() {
 
    // Identify the current script element NOTE: must be before $(document).ready(function()
    var scripts = document.getElementsByTagName('script');
    var thisScript = scripts[scripts.length - 1];
 
    // Identify the current script's parent question ID
    var scriptParent = $(thisScript).parents('div[id^="question"]:eq(0)');
    return ($(scriptParent).attr('id').substr(8)); 
 
  }
 
</script>

The var "thisQID" is now set as that question's ID .

Now you can change this:
Code:
$('#question69 .survey-question-answer ').hide();

To this:
Code:
$('#question'+thisQID+' .survey-question-answer ').hide();

And it should be fully portable to another survey.

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Last edit: 12 years 4 months ago by tpartner.
The topic has been locked.
More
12 years 4 months ago #70847 by toma
Thanks! It seems to work nicely!
The topic has been locked.

Lime-years ahead

Online-surveys for every purse and purpose