In Microsoft Dynamics CRM 3.0, there are some default navbar items such as "Information", "More Addresses", "Activities", "History" on CRM Contact and Account Entities. These names can not be changed through customization methods.
Below scripts show how you can do this in the onLoad events.
if (document.getElementById("navAddresses") != null)
{
document.getElementById("navAddresses").innerHTML = "<img class='icon' src='/_imgs/ico_18_1071.gif' align='absmiddle'/> <nobr class='lbText' title='View More Addresses' style='width:105px'>Other Addresses</nobr></div>";
}
if (document.getElementById("navActivities") != null)
{
document.getElementById("navActivities").innerHTML = "<img class='icon' src='/_imgs/ico_18_act.gif' align='absmiddle'/> <nobr class='lbText' title='View Open Activities' style='width:105px'>Open Activities</nobr></div>";
}
Enjoy!
3 comments:
Gerçekten merak ettiğim bir bilgiydi. Teşekkürler araştırdığın ve paylaştığın için.
I Love You Too Much. :)
Yine puanı kaptın :) Eline sağlık ...
Post a Comment