2.When the Caller field is changed, retrieve the caller's location and update the Location field accordingly.
Client script
Working Code Answered question October 24, 2023
function onChange(control, oldValue, newValue, isLoading) { var getLocation=g_form.getReference('caller_id', LocationData); } function LocationData(getLocation) { // reference is passed into callback as first arguments g_form.setValue("location",getLocation.location); }
Client script
Working Code Answered question October 24, 2023