- Posts: 222
- Thank you received: 10
Ask the community, share ideas, and connect with other LimeSurvey users!
Use relevance equation (or condition GUI editor) to show the comment box only for checked choice.krosser wrote: The thing is that only a few answer choices need comments/specification and I guess I would need to add 'specify' at the end of those answer choices and leave one box.
DenisChenu wrote: Use relevance equation (or condition GUI editor) to show the comment box only for checked choice.
Why do complex when it can be simple …
Add something like this to the question source - this will allow you to pick up most of the core style rules for the check-boxes.So, I was asked to change radio buttons to checkboxes buttons for design consistency. But it doesn't look nice with CSS.
<script type="text/javascript" charset="utf-8"> $(document).on('ready pjax:scriptcomplete',function(){ $('#question{QID}').addClass('with-checkboxes'); $('#question{QID} .radio-item').removeClass('radio-item').addClass('checkbox-item'); }); </script> <style type="text/css"> .list-radio.with-checkboxes .checkbox-item { padding-left: 3px; } .list-radio.with-checkboxes .checkbox-item input[type="radio"]:indeterminate + label::after { display: none; } </style>