Hm,
what is entered here?
The years the visited the school? or what.
Then I should recommend a different question type, like "multiple with comment"
And as I suppose this last option is something like "None of them/Refused".
So it is an exclusive option.
There are ways to hide the comment field for some subquestions, to add a suffix and to reduce the length of the comment.
May look like this
This is done by inserting this javascript snippet into the question text (in sourcecode mode)
Code:
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
var thisQuestion = $('#question{QID}');
// Remove some text inputs
$('.checkbox-text-item:eq(6) .comment-item', thisQuestion).remove();
});
</script>
<script type="text/javascript" charset="utf-8">
$(document).on('ready pjax:scriptcomplete',function(){
// Insert comment suffix
var suffixText = '%';
$('#question{QID} .comment-item').append('<span class="comment-suffix">'+suffixText+'</span>');
});
</script>
And a bit css
Code:
<style type="text/css">
#question{QID} input[type="text"] {
width:8%;
min-width: 50px;
display: inline-block;
}
</style>
I am not sure if you are allowed to insert scripts, seeing the address "datacentrum.al". Where exactly is LimeSurvey hosted?
Joffm