SP2010:如何在功能区中创建新按钮

时间:2010-10-14 07:25:06

标签: sharepoint-2010

我在向功能区添加新的自定义按钮时遇到一些问题。正如sharepoint 2010 SDK(如何:使用自定义操作修改用户界面)中所述,我创建了一个visual studio项目并复制了应该创建新按钮的xml代码。这是代码:

<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
  <CustomAction Id="ListViewCustomization" Location="CommandUI.Ribbon.ListView" RegistrationId="101" RegistrationType="List" Title="List View Ribbon Customization">
    <CommandUIExtension>
      <CommandUIDefinitions>
        <CommandUIDefinition Location="Ribbon.Documents.Share.Controls._children">
          <Button Id="ListViewButton" Command="ListViewButtonCommand" Description="Go to Settings" LabelText="Site Settings" TemplateAlias="o2" Sequence="93"/>
        </CommandUIDefinition>
      </CommandUIDefinitions>
      <CommandUIHandlers>
        <CommandUIHandler Command="ListViewButtonCommand" CommandAction="/_layouts/settings.aspx" />
      </CommandUIHandlers>
    </CommandUIExtension>
  </CustomAction>
</Elements>

我检查了网站集的网站设置,并激活了新功能结果,但没有新的按钮。 我错过了一些步骤吗?

2 个答案:

答案 0 :(得分:1)

你确定按钮不存在吗?

我按照How to: Modify the User Interface Using Custom Actions文章中的说明进行操作,结果如下:

alt text

答案 1 :(得分:1)

如果我按照步骤操作,我会在“共享和追踪”组下的功能区中看到一个按钮。

我希望您正在检查文档库而不是其他任何地方。请记住,您只通过在xml文件中指定RegistrationId =“101”来自定义文档库。