Initialization Option Author API

tags

Configuration options for the Tag search.

Values

Request object key config.item_list.toolbar.search.tags

Type object

This object has the following properties which can be configured.

  • show boolean

    Controls whether searching by Tags is available.

    You would want to use this to prevent authors from searching by Tags using the default interface.

    Default: true

    var initializationOptions = {
        "config": {
            "item_list": {
                "toolbar": {
                    "search": {
                        "tags": {
                            "show": false
                        }
                    }
                }
            }
        }
    };
Was this article helpful?