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

Allow to uncheck answers in quiz attempt: response = empty

    XMLWordPrintable

Details

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

    Description

      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.

      Attachments

        Issue Links

          Activity

            People

              timhunt Tim Hunt
              ecastro Enrique Castro
              Nobody Nobody
              Safat Shahin, Tim Hunt, Ilya Tregubov, Kevin Percy, Mathew May, Mihail Geshoski, Shamim Rezaie
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: