- Posts: 30
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { // The alert message (edit as necessary) var msg = 'Each answered row must have values for BOTH dropdowns.'; // Identify this question var thisQuestion = $('#question{self.qid}'); // Wrap the answer text in <span> elements $('th.answertext').wrapInner('<span class="answertext-inner" />'); // Interrupt the Next/Submit function $('form#limesurvey').submit(function(){ // Override the built-in "disable navigation buttons" feature $('#moveprevbtn, #movenextbtn, #movesubmitbtn').prop('disabled', false); // Validate each row $('.answertext-inner', this).removeClass('errormandatory'); $('tr.dropdown-list', thisQuestion).each(function(i) { if($('option[value=""]:selected', this).length == 1) { $('.answertext-inner', this).addClass('errormandatory'); } }); // If an invalid row is found, pop up the alert and abort the submit if($('.answertext-inner.errormandatory', thisQuestion).length != 0) { alert(msg); return false; } }); }); </script>
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { // Identify this question var thisQuestion = $('#question{self.qid}'); // Insert an empty option $('.dropdown-item select', thisQuestion).each(function(i) { if($('option[value=""]', this).length == 0) { $(this).prepend('<option value="">Please choose...</option>'); } }); }); </script>