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.
Parameters
Example Usages
app.setControlUnmodifiedValue("myControlId", "unmodified Value");
app.setControlUnmodifiedValue("myControlId", 1); // sets the value to 1.let valueToCompare = "Hello Wolrd!";
app.setControlUnmodifiedValue("myControlId", valueToCompare);Return Values
Last updated