Answered by:
CRM 2011 Form Hiding all Left Navigation items

Question
-
Is it possible to hide all the left navigation links on a custom entity form?
I've customize the form, removing all the related records on the navigation, leaving just the headings.When I pull up the published form, one navigation item remains.
Thanks in advance.
Monday, February 27, 2012 8:45 PM
Answers
-
Hi,
You can use :
function NotDisplayLinkGroupProc(){ var crmProc = document.getElementById("_NA_PROC"); if (crmProc != null) { crmProc.style.display='none' } }
Regards,
Philippe
Blog : Dynamics CRM pour les francophones/for French speakers
Please remember to click "Vote as Helpful" and “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
- Edited by Philippe LEAL Thursday, March 1, 2012 3:05 PM
- Proposed as answer by Philippe LEAL Thursday, March 1, 2012 3:06 PM
- Marked as answer by mosbySE Monday, March 5, 2012 4:51 PM
Thursday, March 1, 2012 3:04 PM -
Un-check "Show Navigation Items" in Form Properties.
MaKeer | myencounterwithcrm.wordpress.com | CRM2011 User Settings Utility | CRM2011 Lookup Preview | CRM2011 Lookup Attribute Mapping | CRM2011 TreeView Control (Beta)
- Marked as answer by mosbySE Monday, March 5, 2012 4:51 PM
Thursday, March 1, 2012 8:12 PM
All replies
-
Thanks for the response Rodrigo, but I'm trying to hide "Processes" header. I believe it's '_NA_PROC'. I've also removed "Dialog Sessions" and "Workflows" from the label. In theory, the label should not display because there are no child elements. But it does.
Any ideas? Can anyonerecreate this scenario?
Wednesday, February 29, 2012 5:43 AM -
-
Hi,
You can use :
function NotDisplayLinkGroupProc(){ var crmProc = document.getElementById("_NA_PROC"); if (crmProc != null) { crmProc.style.display='none' } }
Regards,
Philippe
Blog : Dynamics CRM pour les francophones/for French speakers
Please remember to click "Vote as Helpful" and “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
- Edited by Philippe LEAL Thursday, March 1, 2012 3:05 PM
- Proposed as answer by Philippe LEAL Thursday, March 1, 2012 3:06 PM
- Marked as answer by mosbySE Monday, March 5, 2012 4:51 PM
Thursday, March 1, 2012 3:04 PM -
If you are looking to hide the Left hand Tab items on a form then you can use the following supported script
xrmPage.ui.tabs.get(1).SetVisible(true); // Show tab
xrmPage.ui.tabs.get(1).SetVisible(false); // Hide tab
orrr try
document.getElementById(“crmNavBar”).parentElement.style.display = “none”;
Software Specialist Crm
- Edited by Ahmet Çankaya Thursday, March 1, 2012 3:20 PM
Thursday, March 1, 2012 3:19 PM -
Un-check "Show Navigation Items" in Form Properties.
MaKeer | myencounterwithcrm.wordpress.com | CRM2011 User Settings Utility | CRM2011 Lookup Preview | CRM2011 Lookup Attribute Mapping | CRM2011 TreeView Control (Beta)
- Marked as answer by mosbySE Monday, March 5, 2012 4:51 PM
Thursday, March 1, 2012 8:12 PM