Posts

Showing posts from August, 2018

Form and Field Notification in Dynamics CRM

Set form notification Xrm.Page.ui.setFormNotification(“Error Message”, “INFORMATION/WARNING/ERROR”, “ERROR CODE”); Clear form notification Xrm.Page.ui.clearFormNotification(“ERROR CODE”); Set Field Notification Xrm.Page.getControl("telephone1").setNotification("Error Message.", "ERROR CODE"); Clear Feild Notification Xrm.Page.getControl("telephone1").clearNotification("ERROR CODE");