我在Sharepoint 2013中遇到问题。

我正在使用Designer 2013,并且试图添加另一个Web部件区域。从图片中可以看到,左侧有一个Web部件区域。我知道如何减小Web部件区域的宽度,因此还有空间。但是我不知道如何实际添加新的Web部件区域

Designer 2013没有设计 View 。
有人知道我这次如何在右侧添加Web部件区域吗?

提前致谢。

最佳答案

如果SP Designer中的“Web部件区域”按钮显示为灰色,则可以手动添加它:

<%@Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>


<WebPartPages:SPWebPartManager id="m" runat="Server"/>
<div data-name="WebPartZone">
    <div xmlns:ie="ie">
        <WebPartPages:WebPartZone runat="server" ID="x0e5f5212505f48a9aac43df13eeae4f9" AllowCustomization="True" AllowPersonalization="False" FrameType="TitleBarOnly" LockLayout="True" Orientation="Vertical">
            <ZoneTemplate>
               <!--DC: Replace this comment with default web parts for new pages. -->
            </ZoneTemplate>
        </WebPartPages:WebPartZone>
    </div>
</div>

资料来源:微软(2015)。如何:在SharePoint 2013中添加一个Web部件区域。https://msdn.microsoft.com/en-us/library/office/jj862341.aspx

关于sharepoint-2013 - Sharepoint Designer 2013-如何添加Web部件区域?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21363706/

10-14 05:24