Hi,
In the process flow on Opoprtunity there is a mandatory field that gives a "Required fields must be filled in" message if clicked in but blurred without entering any value.
I have a javascript that executes on process step change. In this code I would like to clear the error notification of a specific field in another step.
I know how to clear a field/form notification for fields on the form but how do I do it in the header?
Since it is Unified Interface I normally use formcontext.getControl(xx).clearNotification(id);
I have also tried the Xrm.Page.getControl("controlname").clearNotification() and Xrm.Page.getControl("header_process_controlname").clearNotification() and but none work.