如何隐藏“!”新”在共享点列表上标记而不影响站点中包含的列表?

发布于 2024-09-25 10:18:30 字数 99 浏览 3 评论 0原文

有谁知道是否可以隐藏附加到新 SharePoint 列表项的标题字段的“新”标签?

我有一个夜间脚本,可以将列表从一个站点复制到另一个站点列表,并且不需要显示新的列表。

Does anybody know if it is possible to hide the "NEW" label that gets appended to the Title field of a new SharePoint list item?

I have a nightly script that copies a list from one site to another site list and don't need the NEW to show up.

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

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

发布评论

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

评论(2

揽月 2024-10-02 10:18:30

如果您只想从单个视图或页面而不是 Web 应用程序中的每个列表中删除它们的图像,您可以使用最喜欢的工具 SsharePoint UI 黑客无处不在 - 内容编辑器 Web 部件 (CEWP) 以及 javascript/jquery/css。

在这种情况下很简单,只需要 CSS。

对于 SharePoint 2010

新图像显示如下

<IMG class="ms-newgif" title="New" alt="New" src="/_layouts/1033/images/new.gif">

如果您将以下样式添加到 CEWP 中(您必须使用 HTML 源视图,而不是富文本编辑器)。

<style>
  IMG.ms-newgif {display:none;}
</style>

新图像将被隐藏。

WSS3 和 SharePoint 2007

CSS 稍微复杂一些

<style>
    TABLE.ms-unselectedtitle TD.ms-vb IMG {display:none;}
    TABLE.ms-selectedtitle TD.ms-vb IMG {display:none;}
</style>

If you just want to remove them image from a single view or page rather than every list in the web application what you can use the favourite tool of SharePoint UI hackers everywhere - the Content Editor Web Part (CEWP) along with javascript/jquery/css.

In this case its easy, only CSS required.

For SharePoint 2010

The New image is displayed as so

<IMG class="ms-newgif" title="New" alt="New" src="/_layouts/1033/images/new.gif">

So if you add the following style into a CEWP (you have to use the HTML Source View, rather than the Rich Text Editor).

<style>
  IMG.ms-newgif {display:none;}
</style>

The New image will be hidden.

WSS3 and SharePoint 2007

The CSS is a little more complex

<style>
    TABLE.ms-unselectedtitle TD.ms-vb IMG {display:none;}
    TABLE.ms-selectedtitle TD.ms-vb IMG {display:none;}
</style>
病女 2024-10-02 10:18:30

您可以设置 days-to-show-new- 的值icon 属性设置为 0。但是,这会影响整个网站;您不能仅对选定的列表执行此操作。

详细信息:如何在将项目添加到 SharePoint Team Services 时阻止显示 !New 标记和 SharePoint Services 网站

You can set the value of days-to-show-new-icon property to 0. However, this affects entire Web site; you cannot do it only for selected lists.

More information: How to stop the !New tag from appearing when you add items to your SharePoint Team Services and SharePoint Services Web site

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