hey all, so I currently have a fieldChanged event that does something when the 'ccnumber' field is changed
the way this is being done is to see if context.fieldId === 'ccnumber'
which means that any time ANY field is changed, the fieldChanged event will fire to check to see if it's ccnumber, if it is it runs, if not it doesn't
is it possible to have the fieldChanged event fire ONLY when a specific field is changed (e.g., ccnumber) such that the fieldChanged event isn't firing for any and every field change?
Any info on this would be much appreciated!