码迷,mamicode.com
首页 > 其他好文 > 详细

在SharePoint Online或SharePoint本地列表中缺少功能区

时间:2018-03-19 21:24:40      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:服务器   SharePoint   

您可能会遇到在SharePoint Online或SharePoint内部部署列表中看不到功能区的情况。功能区可以轻松访问SharePoint列表中的常见任务。它还提供了有用的工具,例如连接到Outlook,导出到Excel和打开访问。


技术分享图片

Scenario #1

在某些早期版本的SharePoint上,迁移到更高版本后,您可能会注意到功能区已经消失或不可用。


Solution #1

试试可以在页面上的任何CEWP上添加该JavaScript脚本

<scripttype="text/javascript"src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<scripttype="text/javascript">
$(document).ready(function(){
var elem = document.getElementById("MSOZoneCell_WebPartWPQ2");
if(elem != null) {
var dummyevent = new Array();
dummyevent["target"] = elem;
dummyevent["srcElement"] = elem;
WpClick(dummyevent);
_ribbonStartInit("Ribbon.Browse", true)
}
});
</script>


Scenario #2

如果没有使用CEWP,并且您尚未从早期版本的SharePoint迁移


Solution #2

在SharePoint Online中,尝试切换到经典模式,是否可以恢复 。

请注意浏览器警告,这是常常容易出现问题,为获得最佳效果,请使用32位Internet Explorer。32位Internet Explorer是Microsoft唯一支持的Web浏览器,可以与所有版本的SharePoint一起正常工作。 Google Chrome,Mozilla Firefox,Apple Safari和Microsoft Edge浏览器并不完全支持,因为它们不支持ActiveX控件。所有64位版本的Internet Explorer也不完全受支持。有关更多信息,请查阅之前文章 SharePoint Server 2016 WEB 网站浏览器支持。

参考:

http://stackoverflow.com/questions/4848892/list-tools-tab-is-no-longer-available-after-adding-webpart-to-the-page  

http://sharepoint.stackexchange.com/questions/53431/cant-see-list-options-after-adding-content-editor

在SharePoint Online或SharePoint本地列表中缺少功能区

标签:服务器   SharePoint   

原文地址:http://blog.51cto.com/djclouds/2088729

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!