Initialization Option Author API

show_reference

Controls whether Item references are visible in the Item list view.

You would want to use this to hide the Item references and only show the Item titles instead.

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

Examples

// Hide the Item references and show Item titles
var initializationOptions = {
    "config": {
        "item_list": {
            "item": {
                "title": {
                    "show": true,
                    "show_reference": false
                }
            }
        }
    }
};

Values

Request object key config.item_list.item.title.show_reference

Default: true

Type boolean

Was this article helpful?