web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :

Community blogs

Featured

Latest blog posts

View all
Like (0)
How to Hide Related Entities in Related Tab Using JavaScript

Are you looking to customize the display of related entities in Dynamics 365 CE? In this blog post, we will explore how to hide related entities in the related tab using JavaScript. This can be particularly useful when you want to streamline the u...

Community Member
Like (0)
D365 CE - JS Deprecated Methods cheatsheet - Xrm.Page deprecated and replaced by f...

Its important for every dynamics developer to understand the deprecated functionalities so that we can stay away from them in our current implementations. This would save lot of time and money when it comes to upgrade and rework when the func...

ram r
Like (0)
D365 CE - JS check the client is offline or online

Greetings, Dynamics Techies! As the world of Dynamics evolves, we are faced with the challenge of developing JavaScript that can seamlessly transition between online and offline modes. With the introduction of the offline profile, this challenge h...

ram r
Like (0)
{Know-How} MSCRM JS - show or hide Navigation items using display name or Label

Code Snippet to show or hide a navigation using display nameFunction to show or hide NavsToggleNavigationItem = function (navName,isVisible) { var navs = Xrm.Page.ui.navigation.items.get(); for (var i in navs) { var nav = navs[i]; ...

ram r
Like (0)
{Know-How}MSCRM D365 JS - show or hide Tab using display name or label

Code Snippet to show or hide a Tab using display nameFunction to show or hide TabsToggleTab = function (tabName,isVisible) { var tabs = Xrm.Page.ui.tabs.get(); for (var i in tabs) { var tab = tabs[i]; if (tab.getLabel() === ta...

ram r
Like (0)
{Know-How}MSCRM D365 JS - show or hide section using display name or label

Code Snippet to show or hide a Section using display nameFunction to show or hide sectionToggleSection = function (tabName, sectionName, isVisible) { var tabs = Xrm.Page.ui.tabs.get(); for (var i in tabs) { var tab = tabs[i]; i...

ram r
Like (0)
D365 CE - Rename organization/Instance url and name in cloud - Powerplatform

After creating the organization/Instance in cloud, we may want to rename the organization URL to fix a typo or we have changed our mind.Can we do it?  => yes, of-course Note: The organization unique name cannot be modified!How to...

ram r
Like (0)
D365 CE - Duplicate detection approach and options

Hello All,It feels great to be back with an interesting topic around duplicate detection and approaches.Duplicate detection is essential to maintaining data integrity and quality in any system and when it comes D365 though there are multiple optio...

ram r