Initialization Option Author API

edit

Controls if authors can edit Tags for the Item.

You would want to use this to prevent authors from making changes to Item Tags. Item Tags will be shown but cannot be changed by the author.

Examples

var initializationOptions = {
    "config": {
        "item_edit": {
            "item": {
                "tags": {
                    "edit": false
                }
            }
        }
    }
};

Values

Request object key config.item_edit.item.tags.edit

Default: true

Type boolean

Was this article helpful?