Saturday, July 12, 2025

Read The Dynamics 365 CRM Form TAB Using Java Script

To use the Dynamics 365 CRM form tab, you have to use this ui.tabs.get("TabName") method.
Now hide and show the TAB


// To hide TAB: true=Hide

formContext.ui.tabs.get("TabName").setVisible(true);


// To hide TAB: false=show

formContext.ui.tabs.get("TabName").setVisible(false);




No comments:

Post a Comment

Hide And Show The Dynamics 365 CRM Button Based On Logged In User Security Roles

 In this post I am going to explain how you will hide and show the Ribbon/Command buttons based on logged in user security rule. I have one ...