Initialization Option Author API

show

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

You would want to use this to show human friendly Item titles instead of the Item reference for Items.

Examples

// Show Item titles
var initializationOptions = {
    "config": {
        "item_list": {
            "item": {
                "title": {
                    "show": true
                }
            }
        }
    }
};

Values

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

Default: false

Type boolean

When set to true, the Item title will be shown (if the Item title is blank "Untitled" will be shown). By default, the Item reference will be shown.

Was this article helpful?