- Posts: 4
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
we mean: Copy the survey, remove everything not related to your problem, send this as lss export.And you should send a lss export of these questions,
// Insert selects $('.answer-item.answer_cell_X001', thisQuestion).addClass('with-select').append('<select class="inserted-select form-control list-question-select">\ <option value="">Yes/No...</option>\ <option value="1">Yes</option>\ <option value="2">No</option>\ </select>'); $('.answer-item.answer_cell_X004', thisQuestion).addClass('with-select').append('<select class="inserted-select form-control list-question-select">\ <option value="">Select...</option>\ <option value="1">Option 1</option>\ <option value="2">Option 2</option>\ <option value="3">Option 3</option>\ <option value="4">Option 4</option>\ </select>');
$('.answer-item.answer_cell_X1', thisQuestion).addClass('with-select').append('<select class="inserted-select form-control list-question-select">\ <option value="">- please, select -</option>\ <option value="1">Elemento 1</option>\ <option value="2">Elemento 2</option>\ <option value="3">Elemento 3</option>\ <option value="4">Elemento 4</option>\ <option value="5">Elemento 5</option>\ <option value="6">Elemento 6</option>\ </select>');
<script type="text/javascript" charset="utf-8"> $(document).on('ready pjax:scriptcomplete',function(){ var thisQuestion = $('#question{QID}'); // Add a question class thisQuestion.addClass('custom-array'); // Column-specific classes $('table.subquestion-list tr', thisQuestion).each(function(i) { $('th, td', this).each(function(i) { $(this).addClass('column-'+i); }); }); }); </script> <style type="text/css">.custom-array table.subquestion-list col { width: auto !important; } .custom-array table.subquestion-list thead .column-0 { width: 12%; } .custom-array table.subquestion-list thead .column-1 { width: 14%; } .custom-array table.subquestion-list thead .column-2 { width: 8%; } .custom-array table.subquestion-list thead .column-3 { width: 14%; } .custom-array table.subquestion-list thead .column-4 { width: 8%; } .custom-array table.subquestion-list thead .column-5 { width: 14%; } .custom-array table.subquestion-list thead .column-6 { width: 8%; } .custom-array table.subquestion-list thead .column-7 { width: 14%; } .custom-array table.subquestion-list thead .column-8 { width: 8%; } </style>
Not as long as you use this "outdated" condition builder.Would you know how to set a "group question" condition ??What about a "couple question condition"?
Does it mean: If one of the questions is not true (what is TRUE) the respondent is screened out?if I have around 14 questions in a group but, at least, 10th, 12th and 14th has to be true.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
I do not understand this.basically, i have 4 sum values (both numerical input questions) and i need sum them for a 5th result be viewyd by the respondents.
Please Log in to join the conversation.