This is driving me crazy!

I'm trying to create a list of FillBlank questions. My goal is to have a list of grammatical English questions for learnings of the language, say about 5 or 10 of them on one subject.

I want the user to be able to see immediately under each question the feedback for each one in the list... for example..

Test question bla bla (Answer)
Correct
Test question 2 bla bla (Wrong Answer)
Incorrect
etc.

I first tried to create multiple questions in one piece of content, no go. Then I tried messing around with the XML code in various ways, trying to use inlinefeedback etc (which apparently doesn't work with fillblank questions?)

Finally I've tried a messy implimentation of views by using tags... and this also doesn't work!? I get the error "No question found in XML of node 11." and the feedback only displays under the top question.

I'm going absolutely crazy... my next resignation will be to just use a book and have one question per page... but for my purposes this is very very clunky. Some questions will take seconds for students to answer and to have to click a link to answer another, and not be able to review feedback on all questions at the end is far from ideal.

Do you have any suggestions at all as to what I can do?

Comments

RagsToRich’s picture

Category: task » support
HylkeVDS’s picture

You can add feedback blocks in the question, each with a unique id:
<feedbackblock id="X" />
For each feedback item you can then set the feedback block in which the feedback should appear with:
<feedback block="X"></feedback>

RagsToRich’s picture

Status: Active » Closed (works as designed)

Thanks so much that works perfectly.