zoukankan      html  css  js  c++  java
  • MS CRM 4.0 Rename or Remove Left Nav Bar Menu Items. Written by: Michael Thompson

     In MS CRM 4.0 have you ever wanted to rename or remove Left Nav links on an entity only to find the OnLoad script fails when trying to use the preview function on the form designer? 

    In many CRM installs companies prefer to not use the Microsoft CRM product catalog so that Write-In Products is really the list of products (on a Quote for example) and Existing Products never has anything listed under it.  Thus they would prefer to eliminate the Existing Products link in the left nav area, and rename "Write In Products" to "Products" or possibly "Line Items."

    The scripts below rename the Write-In Products link and remove the Existing Products link.  They also check to see if the link exists before going through the function, thus preserving the preview functionality of the form designer (if you preview a form without running this check, then the preview will throw and error).  This rename also avoids going to the server to pull icons as many other scripts do.  Note in the rename function a line is repeated twice.  No it is not a mistake, it is needed.  The rename function passes in 3 parameters (navName, Display text, name you want displayed).  You will probably need something like IE Dev toolbar to be able to find the navName.

     

    /* Retext/Rename Left Nav Display links. */

    function leftNavRename(leftNav, oldName, newName)

    {

        var navItem = document.getElementById(leftNav);

        if(navItem  != null)

        {

            navItem.innerHTML = navItem.innerHTML.replace(oldName, newName);

            navItem.innerHTML = navItem.innerHTML.replace(oldName, newName);

        }

    }

    leftNavRename ('navWriteInProducts','Write-In Products','Products');

     

     

    /* Remove Left Nav bar links */

    function leftNavRemove(lNav)

    {

        var lNavItem = document.getElementById(lNav);

        if (lNavItem != null)

        {

            lNavItem.parentNode.style.display ='none';

        }

    }

    leftNavRemove('navExistingProducts');


    Re: MS CRM 4.0 Rename or Remove Left Nav Bar Menu Items.

    Yes you can, most NAV items can have displayed text changed using the function. You must know the ID of the part you wish to change (the reason for the IE Dev Toolbar reference above). Here is how the onload function would look.

    function leftNavRename(leftNav, oldName, newName)
    {
    var navItem = document.getElementById(leftNav);
    if(navItem != null)
    {
    navItem.innerHTML = navItem.innerHTML.replace(oldName, newName);
    navItem.innerHTML = navItem.innerHTML.replace(oldName, newName);
    }
    }
    leftNavRename ('_MIcomplete','Close Opportunity...', 'Complete Opportunity');
  • 相关阅读:
    JQuery+Ajax+Ashx+Base64 data无法传递的问题
    用户 'IIS APPPOOL\DefaultAppPool' 登录失败。 的解决方案
    CS0016: 未能写入输出文件“c:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\web\4b49f661\23a749fc\App_Web_default.aspx.cdcab7d2.zii776dc.dl
    SQL 按月统计
    591  Box of Bricks
    10038 Jolly Jumpers
    113 Power of Cryptography
    10370 Above Average
    10189 Minesweeper
    136 Ugly Numbers 之“堆”的解法
  • 原文地址:https://www.cnblogs.com/janmson/p/1510294.html
Copyright © 2011-2022 走看看