Initialization Option Items API

disable_item_workflow

Disable actions from being executed for all Items in the assessment.

You would want to specify this option so that you can turn off all pre-configured actions in the assessment, such as automatically playing a video for each Item when it has loaded, for example.

Another example for use in authoring, this feature is useful for editing individual Items without needing to wait for its full action sequence to complete.

See the Understanding The Action Builder article for more information on this feature.

Examples

// Disable all Item actions in the assessment
var initializationOptions = {
    "config": {
        "configuration": {
            "disable_item_workflow": true
        }
    }
};

Values

Request object key config.configuration.disable_item_workflow

Default: false

Type boolean

Was this article helpful?