- hide custom entities from entity navigation pane
- Posted by is_vlb50@hotmail.com on August 31st, 2006
I need to hide custom entity inside Order entity related by
relationship 1:M. For example on the left hand side of the entity Order
I don't want to see my custom entity.
Thanks
- Posted by MattNC on August 31st, 2006
In the OnLoad event for the Order form you can add some script to hide the
link in the left hand navigation. For example, to hide the link to Activities
you would use
navActivities.style.display = "none";
replace Activities with the name of your custom entity and it should be
hidden when the form loads.
--
Matt Wittemann, CRM MVP
http://icu-mscrm.blogspot.com
"is_vlb50@hotmail.com" wrote:
- Posted by Natalie on September 5th, 2006
"MattNC" wrote:
- Posted by Natalie on September 5th, 2006
I tried using this script for the Sub-Contacts entity. It doesn't seem to do
anything. I have looked all over and cannot find sub-contacts to hide or
delete. The company does not want users to use this entity, since it is
easily forgotten.
Natalie
"MattNC" wrote:
- Posted by MattNC on September 5th, 2006
Try this in your OnLoad event for the form, and remember that it is case
sensitive:
navSubConts.style.display = "none";
--
Matt Wittemann, CRM MVP
http://icu-mscrm.blogspot.com
"Natalie" wrote:
- Posted by Natalie on September 5th, 2006
Thank you, I was spelling contacts out previously. Seems to work great as
you suggested.
Thanks again,
Natalie
"MattNC" wrote:
- Posted by Hoho on September 6th, 2006
Hello.
I'm looking to do something very similar. I have an entity called Focus
Activity that should only display when an account is marked as a focus
account.
The schema name for the new entity is "new_accountfocusactivity"
I can't however make this work. What should I use to reference this
entity in this fashion? Tried most combinations I can think of (eg
navnew_accountfocusactivity, nav_new_accountfocusactivity, etc)
Many Thanks.
- Posted by Hotwheels on November 16th, 2006
I found out my problem using Fiddler HTTP tool, it showed that CRM was using
the plural name of my custom entity which in my case was
nav_contact_res_investors.
if you go to the Entity Definitions and look at the Plural Name this is the
name that they use so format is new_(Plural Name).
Mike
"Hoho" wrote: