Initialization Option Author API

show

Controls whether the Create Item button is visible.

You would want to use this to hide the Create Item button in the Activity editor view.

Examples

// Hide the Create Item button
var initializationOptions = {
    "config": {
        "activity_edit": {
            "item": {
                "add": {
                    "show": false
                }
            }
        }
    }
};

Values

Request object key config.activity_edit.item.add.show

Default: true

Type boolean

Was this article helpful?