For the complete documentation index, see llms.txt. This page is also available as Markdown.

setControlUnmodifiedValue

Sets the value, that is used to compare to the actual control value. If both are not equal, the field will be marked as changed.

1. Simple Example Usages

   brixxApi.setControlUnmodifiedValue("myControlId", "unmodified Value");
   brixxApi.setControlUnmodifiedValue("myControlId", 1); // sets the value to 1.

2. Simple Example Usages with variables

   let valueToCompare = "Hello Wolrd!";
   brixxApi.setControlUnmodifiedValue("myControlId", valueToCompare);

Last updated