Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Excerpt

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.  

Tip
Include Page
TERMS:Business Rule Condition: Tagbox Items Changed
TERMS:Business Rule Condition: Tagbox Items Changed

(lightbulb) 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). 

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

...

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

Property

Value

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.

...

Did the Product Assignments Change?

Code Block
{
	"kind": "TagboxItemsChangedCondition",
	"fieldpath":"productInformation.products"	
}