Initialization Option Author API

enabled

Controls whether all Items in the Item bank are set to read-only.

You would want to use this to disable the editing functionality for all Items.

Examples

// Set all Items to read-only
var initializationOptions = {
    "config": {
        "global": {
            "items": {
                "read_only": {
                    "enabled": true
                }
            }
        }
    }
};

Values

Request object key config.global.items.read_only.enabled

Default: false

Type boolean

Was this article helpful?