FormControl.hasChanged Method [AX 2012]
Sets or returns a value that indicates whether the contents of the control have changed.
The following example shows how to return and set the value that indicates whether the contents of the control have changed.
boolean bHasChanged; // The ctrl variable was previously assigned // as a FormControl value. // Retrieve the hasChanged value. bHasChanged = ctrl.hasChanged(); // Modify the hasChanged value. ctrl.hasChanged(true);
Community Additions
ADD
Show: