- Posts: 6
- Thank you received: 0
Welcome to the LimeSurvey Community Forum
Ask the community, share ideas, and connect with other LimeSurvey users!
Adding "Other:" option to array
11 months 3 weeks ago #226839
by pari2205
Adding "Other:" option to array was created by pari2205
Please help us help you and fill where relevant:
Your LimeSurvey version: [see right hand bottom of your LimeSurvey admin screen]
Own server or LimeSurvey hosting:
Survey theme/template:
==================
Hello everybody,
I was wondering if it is possible to add to the end of the Subquestions in an array the "Other:" option, so that the user can write in their own subquestion and then select one of the Answer options.
The selector fot the "Other: option" does not come up on the settings for the array question category.
Thank you very much.
Your LimeSurvey version: [see right hand bottom of your LimeSurvey admin screen]
Own server or LimeSurvey hosting:
Survey theme/template:
==================
Hello everybody,
I was wondering if it is possible to add to the end of the Subquestions in an array the "Other:" option, so that the user can write in their own subquestion and then select one of the Answer options.
The selector fot the "Other: option" does not come up on the settings for the array question category.
Thank you very much.
Please Log in to join the conversation.
11 months 3 weeks ago #226841
by tpartner
Cheers,
Tony Partner
Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Replied by tpartner on topic Adding "Other:" option to array
Why didn't you answer the questions at the top of the form? We have no clue about your LimeSurvey installation.
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: pari2205
Please Log in to join the conversation.
11 months 3 weeks ago #226848
by pari2205
Replied by pari2205 on topic Adding "Other:" option to array
Sorry, I'm very new about this.
Version 5.3.6, Limesurvey Cloud
Version 5.3.6, Limesurvey Cloud
Please Log in to join the conversation.
11 months 3 weeks ago #226851
by tpartner
Cheers,
Tony Partner
Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Replied by tpartner on topic Adding "Other:" option to array
Add a short-text question in the same group directly after the array question and then add this scripot to the source of the array question:
Sample survey attached:
Code:
<script type="text/javascript" data-author="Tony Partner"> $(document).on('ready pjax:scriptcomplete',function(){ // Identify the questions var thisQuestion = $('#question{QID}'); var nextQuestion = thisQuestion.nextAll('.text-short:eq(0)'); // Hide the next question nextQuestion.hide(); // Move the text inputs $('tr[id^="javatbd"]:last th.answertext', thisQuestion).append($('.answer-item', nextQuestion)); // Clean-up styling $('th.answertext .answer-item', thisQuestion).css({ 'padding': 0 }); $('th.answertext .answer-item div', thisQuestion).css({ 'padding': 0 }); }); </script>
Sample survey attached:
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: pari2205
Please Log in to join the conversation.
11 months 3 weeks ago #226853
by pari2205
Replied by pari2205 on topic Adding "Other:" option to array
Thank you. I only have one last question: how can I open the file .lss you attached so that I can make sure I am doing everything right?
Please Log in to join the conversation.
11 months 3 weeks ago - 11 months 3 weeks ago #226854
by tpartner
Cheers,
Tony Partner
Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Replied by tpartner on topic Adding "Other:" option to array
You can open it in any plain-text editor but I don't know why you would. Simply import it as a survey.
Cheers,
Tony Partner
Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Last edit: 11 months 3 weeks ago by tpartner.
Please Log in to join the conversation.