Background colors to Fields through JavaScript

Background colors to Fields through JavaScript function colour() { //// Update Field Label Colors for account entity document.getElementById("name").style.color = "White"; document.getElementById("name").style.backgroundColor = "Red"; document.getElementById("accountnumber").style.color = "White"; //document.getElementById("accountnumber").style.backgroundColor = "Red"; }

Notifications in MSCRM using Javascript

Notifications in MSCRM using Javascript setFormNotification Syntax: Xrm.Page.ui.setFormNotification(message, level, uniqueId); Parameter Name Type Description message String The text of the message level String The level defines how the message will be displayed. ERROR : Notification will use the system error icon. WARNING : Notification will use the system warning icon. INFO : Notification will use the … Continue reading Notifications in MSCRM using Javascript