Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Excerpt
Include Page
TERMS:Business Rule Condition: Tagbox Item Assigned
TERMS:Business Rule Condition: Tagbox Item Assigned

(lightbulb) Triggers the moment an when a tagbox item is assigned found in the provided Tagbox, either any value (leave refId empty) or a specific value (provide refId). 

(warning) The Condition “Tagbox Item Assigned” is true, when the Item is assigned and when it stays assigned. If you want the business rule to trigger only when the item is assigned, then you must combine “Field Value Change” and “Tagbox Item Assigned”.

Use Tagbox Item Assigned inside AND/OR to check if multiple tags were are assigned. 

Code Block
{
    "kind": "AndCondition",
    "conditions": [
		{
		"kind": "TagboxItemAssignedCondition",
		"refId": "123556..."
		},
		{
		"kind": "TagboxItemAssignedCondition",
		"refId": "123556..."
		}
	]
}

...

Property

Value

kind

TagboxItemAssignedCondition

fieldpath

layerId.fieldId

Details on accessing field values, specifically fieldpath starts lowercase

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

refId

The ID of the List Item to check. 

This is optional. You can leave it empty if you want to check any assignments from the tagbox field. 

You can get the refId by opening up the List Item in Detail View and check the URL. 

...