Initialization Option Author API

note

Configuration options for the note field.

Values

Request object key config.item_edit.item.details.note

Type object

This object has the following properties which can be configured.

  • edit boolean

    Controls whether the notes field can be changed.

    You would want to use this so that you can prevent authors from editing the Item's notes.

    Default: true

    var initializationOptions = {
        "config": {
            "item_edit": {
                "item": {
                    "details": {
                        "note": {
                            "edit": false
                        }
                    }
                }
            }
        }
    };
  • show boolean

    Controls whether the notes field is shown.

    You would want to use this to allow authors to add notes for Items.

    Default: false

    var initializationOptions = {
        "config": {
            "item_edit": {
                "item": {
                    "details": {
                        "note": {
                            "show": true
                        }
                    }
                }
            }
        }
    };
Was this article helpful?