Initialization Option Author API

show

Controls whether the save button is shown.

You would want to use this to hide the default save button and implement your own custom save button in your application, for example.

Note Setting both save.show and back initialization options to false will hide the entire toolbar.

Examples

var initializationOptions = {
    "config": {
        "activity_edit": {
            "save": {
                "show": false
            }
        }
    }
};

Values

Request object key config.activity_edit.save.show

Default: true

Type boolean

Related articles

  • The activity_edit.back initialization option, which controls whether the back button is shown in the Activity editor view.
Was this article helpful?