Uploaded image for project: 'Moodle'
  1. Moodle
  2. MDL-6364

Allow to uncheck answers in quiz attempt: response = empty

XMLWordPrintable

    • Icon: New Feature New Feature
    • Resolution: Duplicate
    • Icon: Minor Minor
    • None
    • 1.6, 1.6.1
    • Questions
    • None
    • MOODLE_16_STABLE

      This is related MDL-5324 issue: allow negative score for individual questions (like SAT MCAT etc.)

      If negative points apply for wrong choices in multichoice questions, then the student should have the option to leave the question blank, unanswered and avoid penalty. However, now once the student has clicked on a radiobutton, there is no way to uncheck it. The only possibility is to mark another option, but it is imposiible to leave the question blank.

      A liitle javascript could help to this task. At ULPG we are using:

      <?php if (!$answer->feedback) { ?>
      <br /><br />
      <input type=button value="<?php print_string('noresponse', 'quiz') ?>" onClick='blankresponse(<?php echo $question->name_prefix ?>)'>
      <script>
      function blankresponse(resp)
      {
      for (var i=0;i<resp.length;i++)

      { resp[i].checked=false; }

      }
      </script>

      We have included these lines in question/type/multichoice/display.html form,
      by line 11, aftter
      <div class="ablock clearfix">
      <div class="prompt">
      <?php echo $answerprompt; ?>

      In this way students can give a second thought and uncheck if desired.

            timhunt Tim Hunt
            ecastro Enrique Castro
            Nobody Nobody
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:

                Error rendering 'clockify-timesheets-time-tracking-reports:timer-sidebar'. Please contact your Jira administrators.