check form is modified using JavaScript
In Dynamic365 to check if the form is modified or not we need to use getIsDirty() method. Please check the below code which i have written in JavaScript. Source Code function checkModified(paramContext){ var isModify = Xrm.Page.data.entity.getIsDirty() if(isModify == true){ … Read more