首页 > 其他 > 详细

crm 4 隐藏自定义 toolbar

时间:2016-06-16 06:45:49      阅读:282      评论:0      收藏:0      [点我收藏+]
//隐藏指定title按钮
function hideISVButton(buttonTitle) {
  var comps = document.getElementsByTagName(‘li‘);
  for (var i = 0; i < comps.length; i++) {
    if (comps[i].title == buttonTitle)
    {
      comps[i].style.display = "none";
      break;
    }
  }
}

技术分享

 

 

隐藏其它的系统中自带的,先使用F12 找html中元素

 

The unsupported way of doing this could be 

1) Find HomePage.aspx in your crm server.
2) Open it in visual studio or any other editor.
3) Find the javascript code function window.onload() in the page.
4) Add the following code to it 

function window.onload()
{
    HandleBackButtonIssues(_currentTypeCode);
    
    // code to hide send deactivate option
  
 var deactiviateElement = document.getElementById(‘_MIdoActioncrmGrid2deactivate‘);
    if (deactiviateElement != null) {
        deactiviateElement.style.display = ‘none‘;
    }   
         
    // end of code
}
But remember it is unsupported !

 

crm 4 隐藏自定义 toolbar

原文:http://www.cnblogs.com/BinBinGo/p/5589641.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!