Hello,
I would like to randomize multi punch question items in blocks. I do have an exclusive option (always at the end) and a not open "other" option (at the second last position):
A--> Block 1
B--> Block 1
C--> Block 1
D--> Block 2
E--> Block 2
F--> Block 2
G--> Block 3
Other-->Block 3
Exclusive--> Block 3
For that reason, I created separate questions for every item-block (1st question with question text, others without) within the same question group and added the same randomization group name for all questions.
I used the follwing skripts:
1. For first question Block1 (items with question text):
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('#question{QID}').addClass('no-bottom');
});
</script>
2. for following question Block 2-3 (only items, no question text):
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('#question{QID}').addClass('no-question');
$('#question{QID}').addClass('no-bottom');
});
</script>
The problems are the following:
1. I want the questions always to be answered, but I can only put every question for itself as obligatory. This means one item of every question has to be selected, which does not always make sense.
2. If the exclusive option is selected ALL other items from all questions of this group should be grayed out. This right now only applies to items, which are in the same block.
Could you maybe help?
Thanks in advance!