Initialization Option Items API

try_again

The configuration object for setting up the Try Again functionality.

You would want to use this option so that you can allow learners to ask for another set of data for the Question they are attempting.

Examples

var initializationOptions = {
    "dynamic_items": {
        "try_again": {
            "max_attempts": 5,
            "random": true
        }
    }
    // ...
};

Values

Request object key dynamic_items.try_again

Type object

This object has the following properties which can be configured.

  • max_attempts integer

    Sets the amount of times the learner can click Try Again, up to a maximum of 10.

  • random boolean

    Sets the dynamic content order to a random sequence for all Items in the assessment.

Related articles

Was this article helpful?