Initialization Option Author API

show_reference

Controls whether Item references are shown in the Item picker, intro and outro picker views.

You would want to use this to choose whether the Item title or the Item reference is shown to the author in the search results.

When enabled with title.show set to true, the Item references will be shown in addition to Item titles.

Examples

// Show the Item titles and hide the Item references
var initializationOptions = {
    "config": {
        "activity_edit": {
            "item_search": {
                "title": {
                    "show": true,
                    "show_reference": false
                }
            }
        }
    }
};

Values

Request object key config.activity_edit.item_search.title.show_reference

Default: true

Type boolean

Was this article helpful?