Welcome to the LimeSurvey Community Forum

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

variable endurl upon radio button question - how can I do that?

  • blazko
  • blazko's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
10 years 11 months ago #93962 by blazko
Hello,
once I found a workaround to redirect users to different surveys upon an answer in the main survey - the problem is i dont know how to modify it for my needs (which are simpler then that example).

Ive got one main survey, where there is only one radio question with 3 answers.

If the user picks 1 and ends the survey i want to take him to url1 if he picks 2, url 2 and so on.

I created the main question, and created a expression question named endURL with this code inside:

{if (druzyna.NAOK == "1"), ' google.pl ', if(druzyna.NAOK == "2"), ' onet.pl ', if(druzyna.NAOK == "3"), ' gazeta.pl ', 'defaultValue' ))) }

end set my endurl in survey settings to: {endURL}

problem is i cant make it work :(

could anyone please help me?
The topic has been locked.
  • blazko
  • blazko's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
10 years 11 months ago #93965 by blazko
The topic has been locked.
  • DenisChenu
  • DenisChenu's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
10 years 11 months ago #93983 by DenisChenu

blazko wrote: {if (druzyna.NAOK == "1"), ' google.pl ', if(druzyna.NAOK == "2"), ' onet.pl ', if(druzyna.NAOK == "3"), ' gazeta.pl ', 'defaultValue' ))) }

end set my endurl in survey settings to: {endURL}

problem is i cant make it work :(

endURL is a equation question type ? You need the http:// before the url.

Maybe use another question code (myEndURL)

Because i use it a lot and it work good.

Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member, professional service on demand , plugin development .
I don't answer to private message.
The topic has been locked.
  • holch
  • holch's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
10 years 11 months ago #93990 by holch
EM is nice, but this would work with quota as well, wouldn't it? Just have zero quotas for each response that needs a different endurl.

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.
  • blazko
  • blazko's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
10 years 11 months ago - 10 years 11 months ago #93996 by blazko
yes, endURL is a equation question type

the code actually look like this:

{if (druzyna.NAOK == "1"), ' google.pl ', if(druzyna.NAOK == "2"), ' onet.pl ', if(druzyna.NAOK == "3"), ' gazeta.pl ', 'defaultValue' ))) }

should the endrl be placed in normal brackets () or in theses {}?
Last edit: 10 years 11 months ago by blazko.
The topic has been locked.
  • blazko
  • blazko's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
10 years 11 months ago #93997 by blazko

holch wrote: EM is nice, but this would work with quota as well, wouldn't it? Just have zero quotas for each response that needs a different endurl.


im not that familar with quotas. How would that look like and how would a differrent url connect with it?
The topic has been locked.
  • blazko
  • blazko's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
10 years 11 months ago #94001 by blazko
I found something strange.

My LimeSurvey copy is installed in Polish and thats the default lang.


When i make an equation question in a polish survey it looks like its not trated in any special way.
An english survey with equation question deals with redirection pretty fine.

Is this a bug or im still doing something wrong?
The topic has been locked.
  • blazko
  • blazko's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
10 years 11 months ago #94003 by blazko
If you can,
plase have a look at the attached example (oonly 2 quesions).
No matter wich option is chosen it redirects only to link1
The topic has been locked.
  • holch
  • holch's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
10 years 11 months ago #94014 by holch
Let's say you 3 possible responses:

A
B
C

You'll create a quote for each of them and set it to zero (0).

So whenever someone marks this response, they will run into the endpage for this quota. At the endpage of this quota you can set an individual endurl.

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

The following user(s) said Thank You: blazko
The topic has been locked.
  • blazko
  • blazko's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
10 years 11 months ago - 10 years 11 months ago #94028 by blazko
Thanks for the hint.

I do have one other question.

Is there a way to forward a answer with the link?

What im trying to do is to redirect (after question 1) to different surveys.
There is a java script with a random number selection from 1 to 1000. If I could automatically forward which number has been picked and place it within answers of the forwarded survey it would awesome.

Sample file (2 question) is attached.

Question "walidacja" is the one responsible for random number generation

<script type="text/javascript">

$(document).ready(function() {


var randNumber = Math.floor(Math.random()*1000 + 1);


$('input#answer249246X52X3592').val(randNumber);
// $('#question1174').hide();
});
</script>
Last edit: 10 years 11 months ago by blazko.
The topic has been locked.
  • DenisChenu
  • DenisChenu's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
10 years 11 months ago #94038 by DenisChenu

blazko wrote: yes, endURL is a equation question type

the code actually look like this:

{if (druzyna.NAOK == "1"), ' google.pl ', if(druzyna.NAOK == "2"), ' onet.pl ', if(druzyna.NAOK == "3"), ' gazeta.pl ', 'defaultValue' ))) }

should the endrl be placed in normal brackets () or in theses {}?


*Please use code:
Code:
{if(druzyna.NAOK == "1","http://example.org","")}{if(druzyna.NAOK == "2","http://example.com","")}{if(druzyna.NAOK == "3","http://example.net","")}

Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member, professional service on demand , plugin development .
I don't answer to private message.
The following user(s) said Thank You: blazko
The topic has been locked.
  • blazko
  • blazko's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
10 years 11 months ago #94039 by blazko
Thanks Denis.

I already used the quota solution.

But if you could help me out in passing an aswer between surveys I would be greatful.

Those redirect url's are in fact 3 different surveys. Survey 1 that stores the url redirect code (quota actually) has also a random number variable. Is it possible to pass this number to the next survey (after redirect) and store it somewhere as a hidden answer for future participant matching?
The topic has been locked.

Lime-years ahead

Online-surveys for every purse and purpose