Populate the Email Id on the Caller field ?How can you achieve this?
Populate the Email Id on the Caller field ?How can you achieve this?
Working Code Answered question October 15, 2023
Use callback function to populate Email ID
function onChange(control, oldValue, newValue, isLoading) { var caller=g_form.getReference('caller_id', getEmail); // doAlert is our callback function } function getEmail(caller) { g_form.setValue("email",caller.email); } }
Populate the Email Id on the Caller field ?How can you achieve this?
Working Code Answered question October 15, 2023