已部署 Sharepoint 2010 WebPart,但它在哪里?

发布于 2024-12-12 14:40:51 字数 326 浏览 0 评论 0原文

按照回答此问题中的步骤操作:如何在 sharepoint 2010 中将自定义 Web 部件从一台服务器部署到另一台服务器

一切似乎都正常,但现在我该怎么办?如果我“编辑”共享点网站的主页并单击“添加 Web 部件”,我在列表中看不到它。

对于 Sharepoint,我是一个完全的新手,所以简单的步骤将不胜感激。

干杯。

Followed the steps in the answer to this question: How to deploy custom webpart from one server to another in sharepoint 2010

It all seemed to work ok, but now what do I do? If I 'edit' the home page of the sharepoint site and click "Add Web PArt", I don't see it in the list.

I am a complete newbie when it comes to Sharepoint, so simple steps would be appreciated.

Cheers.

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

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

发布评论

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

评论(2

嘿咻 2024-12-19 14:40:51

Web 部件定义文件必须位于Web 部件库中才能在“添加 Web 部件列表”中可用。

您可以创建 SharePoint 网站功能来部署此库中的定义文件:

feature.xml:

<?xml version="1.0" encoding="utf-8" ?>
<Feature
    xmlns="http://schemas.microsoft.com/sharepoint/"
    Id="DFD20610-C329-45E0-B037-8E6FC0A684AB"
    Title="Web Part Feature"
    Scope="Site"
    >

    <ElementManifests>
        <ElementManifest Location="Elements.xml" />
        <ElementFile Location="TheWebPart.dwp" />
    </ElementManifests>
</Feature>

Elements.xml:

<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <Module Name="WebPartPopulation" Url="_catalogs/wp" RootWebOnly="TRUE">
        <File Path="TheWebPart.dwp" Url="TheWebPart.dwp" Type="GhostableInLibrary" IgnoreIfAlreadyExists="TRUE">
            <Property Name="Group" Value="Custom" />
        </File>
    </Module>
</Elements>

The Web Part definition files have to be in the Web Part Gallery in order to be available in the "Add Web Part List".

You can create a SharePoint site feature to deploy the definition files in this library:

feature.xml:

<?xml version="1.0" encoding="utf-8" ?>
<Feature
    xmlns="http://schemas.microsoft.com/sharepoint/"
    Id="DFD20610-C329-45E0-B037-8E6FC0A684AB"
    Title="Web Part Feature"
    Scope="Site"
    >

    <ElementManifests>
        <ElementManifest Location="Elements.xml" />
        <ElementFile Location="TheWebPart.dwp" />
    </ElementManifests>
</Feature>

Elements.xml:

<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <Module Name="WebPartPopulation" Url="_catalogs/wp" RootWebOnly="TRUE">
        <File Path="TheWebPart.dwp" Url="TheWebPart.dwp" Type="GhostableInLibrary" IgnoreIfAlreadyExists="TRUE">
            <Property Name="Group" Value="Custom" />
        </File>
    </Module>
</Elements>
污味仙女 2024-12-19 14:40:51

我认为 Elements.xml 中的 Module 行还需要包含 List="113"

I think the Module line within Elements.xml also needs to contain List="113"

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