Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Editor Changes:

We will remove the Warning timer from editor.

...

For more information, please refer to this documentation: https://quml.sunbird.org/v1/question#hints

Only Shikshalokam is used in using the following format.

  • Question - { hints: { en : "string"}}

  • Also, they are storing the hints for each option under the interactions property.
    Here is an example from Shikshalokam:

    Code Block
    interactions: {
      response1: {
        type: "choice",
        options: [
          {
            label: "<p>option 1</p>",
            value: 0,
            hints: {
              en: "test hint 1",
            },
          },
          {
            label: "<p>option 2</p>",
            value: 1,
            hints: {
              en: "test hint 2",
            },
          },
          {
            label: "<p>option 3</p>",
            value: 2,
            hints: {
              en: "test hint 3",
            },
          },
        ],
        autoCapture: "Yes",
        validation: {
          limit:{
            maxLength:100
          },
          required: "Yes",
          pattern: "dd/mm/yyyy",
        },
      },
    }

instructions (This has to be modified by an adopter)

...