Disabling Activities rollup view option using Jscript
In CRM, when you choose ‘Related “Regarding” Records’ option from ‘Activities’ left navigation of Account form, It loads Activities rollup view.
Recently we got a requirement to disable rollup option.
So we used below script to remove the ‘Related “Regarding” Records’ option from “Include” dropdown.
document.getElementById(“navActivities”).onclick = function () {
Mscrm.Details.loadArea(this, “areaActivities”);
document.getElementById(“areaActivitiesFrame”).onreadystatechange = function () {
if (this.readyState == “complete”) {
var doc = this.contentWindow.document;
var filterOn = doc.getElementById(“crmGrid_Account_ActivityPointers_ViewControl”);
filterOn.value = “ImmediateRelatedView”;
filterOn.options.remove(1);
// Refresh the grid
var evt = document.createEvent(“HTMLEvents”);
evt.initEvent(“change”, false, true);
filterOn.dispatchEvent(evt);
}
};
};
How do I use the script
- Put the above script on form’s onload event
- After the execution of script form looks as below
What are we doing in script
- Get the Activities IFrame id (i.e., areaActivitiesFrame)
- When the IFrame load completes (i.e., readyState == “complete”)
- Get the “Include” dropdown control (i.e., ‘crmGrid_Account_ActivityPointers_ViewControl’)
- Remove the ‘Related “Regarding” Records’ option
Note – The above script is unsupported which is not recommended and works for pre & post UR 12
Stats
- 1,243,460 hits
Translate
Categories
Top Posts
- Power Apps component framework (PCF) - Beginner guide
- [Step by Step] Using TypeScript in Dynamics 365 9.x
- Auto generate new GUID for ‘uniqueidentifier’ column in SQL Table
- PowerApps - Step By Step - Build a simple Calculator App
- Useful JScript syntax's – ADX/Dynamics 365 Portals
- [Step by Step] Restore a Database from Azure Blob to Azure SQL Server
- [Code Snippet] Custom Workflow Activity with Input and Output Params
- C# - Bulk Update Records - Pass Data Table to SQL Stored Procedure
- Set “Created On”,” Created By”, “Modified On”, “Modified By” fields using SDK/Data Import/Plug-in – Dynamics 365
- Dynamics Portals - How to get the configured Portal’s URL