sharepoint ECB菜单中如何隐藏“通知我”

老问题了。。

1.  比较彻底的做法,设置整个web应用程序的权限策略,去掉”创建通知“的权限定义。     http://管理中心/_admin/vsmask.aspx

2.  如果只想在某个列表或文档库中去掉,则可以使用JS。

For DocumentLibrary
eval(AddDocLibMenuItems.toString().replace('HasRights(0x80, 0x0)','false && HasRights(0x80, 0x0)'))

For List
eval(AddListMenuItems.toString().replace('HasRights(0x80, 0x0)','false && HasRights(0x80, 0x0)'))

 

至于这段代码怎么用。。聪明的你一定知道的。。。

 

 update:发现怎么用还是比较麻烦,还是把代码贴出来吧。

 

< script >
function  fuckAlert(){
if ( typeof (AddDocLibMenuItems) == ' function ' ){
eval(AddDocLibMenuItems.toString().replace(
' HasRights(0x80, 0x0) ' , ' false && HasRights(0x80, 0x0) ' ))
window[
" AddDocLibMenuItems " ] = AddDocLibMenuItems
}
else {
window.setTimeout(
" fuckAlert() " , 500 );
}
}
_spBodyOnLoadFunctionNames.push(
" fuckAlert " )
< / script>

 

你可能感兴趣的:(SharePoint)