Initialization Option Author API

either

Controls whether Items containing any of the specified Tags will be shown as read-only.

You would want to use this to specify tagged groups of Items to be read-only.

Examples

var initializationOptions = {
    "config": {
        "global": {
            "items": {
                "read_only": {
                    "filter": {
                        "either": [
                            { "type": "TYPE1", "name": "NAME1" },
                            { "type": "TYPE2", "name": "NAME2" },
                            // ...
                        ]
                    }
                }
            }
        }
    }
};

Values

Request object key config.global.items.read_only.filter.either

Default: []

Type array[TagsV2]

An array of TagsV2 objects.

Was this article helpful?