首页 > Web开发 > 详细

CRM HomePage.aspx

时间:2016-12-08 03:29:26      阅读:237      评论:0      收藏:0      [点我收藏+]
 //added by bgx on 20160616
 //隐藏指定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";
      comps[i-1].style.display = "none";
      break;
    }
  }
}
 //added by bgx on 20160616
 //获取当前人员是否含有指定角色权限 
function UserHasRole(roleName)
{
 //get Current User Roles, oXml is an object
 var oXml = GetCurrentUserRoles();
 if(oXml != null)
 {
  //select the node text
  var roles = oXml.selectNodes("//BusinessEntity/q1:name");
  if(roles != null)
  {
   for( i = 0; i < roles.length; i++)
   {
    if(roles[i].text == roleName)
    {
     //return true if user has this role
     return true;
    }
   }
  }
 }
 //otherwise return false
 return false;
}

 

CRM HomePage.aspx

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

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