Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

TagboxItemsChangedCondition checks for any changes to the tagbox (fieldpath) on any Content Item and triggers this very moment e.g. check if the tagbox "regulations" changed. 

This does not apply to changes to the tagbox field settings or changes to the List Item in the List Browser.  


Triggers the moment of any change to the Tagbox.  

Use Tagbox Items Changed inside AND/OR to check if multiple tagboxes were changed (items assigned or unassigned). 

Check if Two Tags are Assigned
{
    "kind": "AndCondition",
    "conditions": [
		{
			"kind": "TagboxItemsChangedCondition",
			"fieldpath":"crisisInformation.regulations"
		},
		{
			"kind": "TagboxItemsChangedCondition",
			"fieldpath":"crisisInformation.actions"
		}
	]
}


Specific Definitions

The refId is used in the Business Rule, so you can update the list item attributes at any time. 

PropertyValue
kind

TagboxItemsChangedCondition

fieldpath

layerId.fieldId

Details on accessing field values, specifically fieldpath starts lowercase

Supports JSON path syntax which you can test here: https://jsonpath.com.

Is Product 12346xxx Assigned?
{
	"kind": "TagboxItemsChangedCondition",
	"fieldpath":"productInformation.products"	
}
  • No labels