Tech Support > Microsoft Windows > Windows CRM > Rename areas in entity NavPane
Rename areas in entity NavPane
Posted by wtcso on October 9th, 2006


Using Sitemap and Application NavBar we have been able to change the name
from Sales to SomethingElse.
But when we display entities like contact, the text Sales is still displayed
in the contact Navbar and there is no way to change it to SomethingElse to be
in correspondance with what we have done before.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/Businesssol...oft.public.crm

Posted by Scott Whynot on October 13th, 2006


Hi,

You can rename the Entity level Areas using the code below in your onload
event. For example: to rename the "Marketing" Area to "Outreach":

document.getElementById("_NA_MA").innerHTML =
document.getElementById("_NA_MA").innerHTML.replac e("Marketing","Outreach");

You can also hide areas using the following code.

document.getElementById("navOpps").parentElement.s tyle.display = "none";
document.getElementById("_NA_SFA").style.display = "none";
document.getElementById("navService").parentElemen t.style.display = "none";
document.getElementById("_NA_CS").style.display = "none";

Hope this helps!

--
Scott Whynot

"wtcso" wrote:

Posted by Scott Whynot on October 13th, 2006


Rename Marketing Area:

document.getElementById("_NA_MA").innerHTML =
document.getElementById("_NA_MA").innerHTML.replac e("Marketing","Outreach");


--
Scott Whynot


"wtcso" wrote:

Posted by Irene Prieto on November 16th, 2006


Hi, i´m trying to rename the Sales Area too. I have these questions:

Which file should be changed to rename Sales Area and what would be the code
to do this?
Thanks,
Irene

"Scott Whynot" <ScottWhynot@discussions.microsoft.com> escribió en el
mensaje news:2AA996E9-DCDB-4D0D-9FBD-16B2F1A8E924@microsoft.com...