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

您可能會遇到在SharePoint Online或SharePoint內部部署列表中看不到功能區的情況。功能區可以輕鬆訪問SharePoint列表中的常見任務。它還提供了有用的工具,例如連接到Outlook,導出到Excel和打開訪問。


clip_image001[32]

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

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章