Hi
I have bpf stages where i wanted to refresh the form on a stage 3 when a field data from stage 4 is loaded . Form refresh needs to happen on form save of stage 3 or when the field from stage 4 is loaded with data. Can anyone please let me know how can I achieve this using javascript or any other way.
Cheers, GPrasanna!
Thanks Priyesh, used the same way to refresh on form save.
Hi GPrasanna,
You can refer this to build out when to refresh the page without reloading the page - https://docs.microsoft.com/en-us/dynamics365/customer-engagement/developer/clientapi/reference/formcontext-data/refresh
Also, for all the fields you want to access on the BPF, you can simply using formContext.getAttribute("header_process" + fieldName).getValue();
Hope this helps.