隐藏“页面” SharePoint 上的按钮

发布于 2024-11-05 00:51:16 字数 106 浏览 0 评论 0原文

隐藏“页面”链接的最简单方法是什么?

在此处输入图像描述

谢谢。

What is the easiest way to hide the "Page" link?

enter image description here

Thank You.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半﹌身腐败 2024-11-12 00:51:16

以下是隐藏“页面”选项卡的代码隐藏和客户端方法

代码隐藏:

通过 MSDN 论坛隐藏/禁用功能区项目

public void HideRibbonItem()
{
    //if this is a System.Web.UI.Page
    SPRibbon ribbon = SPRibbon.GetCurrent(this);
    ribbon.TrimById("Ribbon.ListItem.New.NewFolder");
}

和来自默认服务器功能区自定义位置它是 Ribbon.WebPartPage 选项卡

javascript/jQuery:

检查页面,我们可以看到页面选项卡埋得很深

SP2010-Page-tab-element

但使用一些快速而肮脏的 javascript 或 jQuery,你可以隐藏该选项卡

javascript:

document.getElementById('Ribbon.WebPartPage-title').style.display = "none";

jQuery:

$('#Ribbon\\.WebPartPage-title').hide();

I'd认为代码隐藏方法是更干净的方法,但客户端脚本也可以完成工作。

Here's are code behind and client side ways of hiding the Page tab

Code Behind:

via MSDN forums Hide/disable ribbon items:

public void HideRibbonItem()
{
    //if this is a System.Web.UI.Page
    SPRibbon ribbon = SPRibbon.GetCurrent(this);
    ribbon.TrimById("Ribbon.ListItem.New.NewFolder");
}

and from Default Server Ribbon Customization Locations it is the Ribbon.WebPartPage tab

javascript/jQuery:

inspecting the page we can see the Page tab is buried deep

SP2010-Page-tab-element

but with some quick and dirty javascript or jQuery you can hide that tab

javascript:

document.getElementById('Ribbon.WebPartPage-title').style.display = "none";

jQuery:

$('#Ribbon\\.WebPartPage-title').hide();

I'd consider the code-behind method to be the cleaner way but client side script gets the job done as well.

安穩 2024-11-12 00:51:16

除了此处提到的解决方案之外,要完全隐藏页面选项卡,您应该使用 Ribbon.WebPartPage 而不是 Ribbon.ListItem.New.NewFolder。

In addition to the solution mentioned here already, to hide the page tab completely you should use Ribbon.WebPartPage instead of Ribbon.ListItem.New.NewFolder.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文