config.item_edit.item.details.note - Initialization - Author API

Author API Initialization

note

Configuration options for the note field.

Values

Attribute path config.item_edit.item.details.note

Type object

Properties

  • 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?

Did you arrive here by accident? If so, learn more about Learnosity.