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 »

FieldValueChangedCondition checks if the value in the provided fieldpath was changed and triggers in this very moment e.g. Check if Checkbox "Stop Publication" changed. Configuration allows checking for any change or change to a specific value (expected value).

This does not include changes to the name or settings of the Field


Triggers the moment the value in the fieldpath changed to any value (leave "expected value" empty) or a specific value (provide it as "expected value"). 


Specific Definitions

Select the condition.

PropertyValue
kind

FieldValueChangedCondition

fieldpath

layerId.fieldId

Details on accessing field values, specifically fieldpath starts lowercase

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

expected value

can be left empty, allows providing the expected value of the field after it was changed (e.g. check if stopPublication (checkbox) changed to true).

Provide the value in the correct format for the field provided, text as text, numbers as numbers: 

  • text as string in quotation marks "value"
  • number as number 1235
  • variables in curly brackets { "fieldid":"value"}
Did Tagbox Product Changed to product X?
{
	"kind": "FieldValueChangedCondition",
	"fieldPath": "productInformation.stopPublication",
	"expectedValue": {
   		"_refId":"12354",
		"name":"my product X"
}
Did Checkbox changed to True
{
	"kind": "FieldValueChangedCondition",
	"fieldPath": "productInformation.stopPublication",
	"expectedValue": {
   		"true"
}
  • No labels