Hello
Can you please advise how to achieve the following:
To copy the value from a calculated value over to a PoG field when a dropdown has changed?
I am using the following code:
NWF.FormFiller.Events.RegisterAfterReady(function () {
var departmentField = NWF$("#" +varDepartment);
var responsiblePerson = NWF$("#" +varResponsible);
departmentField.change(function(){
NWF$("#" + varResponsiblePoG).val(responsiblePerson);
});
});Department dropdown field = varDepartment
Calculated Value (lookup function to fetch the responsible person based on the department) = varResonsible
The People or Group field = varResponsiblePoG
