Sharepoint 2010自定义操作未显示

时间:2013-04-17 15:10:34

标签: sharepoint sharepoint-2010

我已经创建了一个自定义操作并将其添加到某个功能中,但是当我激活该功能时它不会出现在它应该出现的地方,不知道出了什么问题。代码如下:

<?xml version="1.0" encoding="utf-8"?>
 <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
   <CustomAction
    Id="0b5d3f99-ea17-4a93-ba04-9744a8c099af"
    RegistrationType="List"
    Title="Developer User Action"
    RegistrationId="0x0100f5be96b7d764406681760305e87f90ac"
    Sequence="4"
    Location="CommandUI.Ribbon.Display">
   <CommandUIExtension>
   <CommandUIDefinitions>
    <CommandUIDefinition Location="Ribbon.ListForm.Display.Actions.Controls._children">
      <Button 
        Id="Ribbon.ListForm.Display.Actions.DeveloperButton"
        Command="OpenWebPart"
        Image32by32="/_layouts/images/Actinium/Icons-Large/note_edit.png"
        Image16by16="/_layouts/images/Actinium/Icons-Small/note_edit.png"
        Sequence="4"
        LabelText="User/Developer Request"
        Description="Back and forth between developer/user to give results of request."
        TemplateAlias="o1" />
    </CommandUIDefinition>
  </CommandUIDefinitions>
  <CommandUIHandlers>
    <CommandUIHandler Command="OpenWebPart" CommandAction="javascript:window.open('http://www.google.ca')"></CommandUIHandler>
  </CommandUIHandlers>
</CommandUIExtension>
</CustomAction>
</Elements>

1 个答案:

答案 0 :(得分:0)

我设法让这个工作,我在代码中做了一些更改,见下文:

<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
 <CustomAction
Id="0b5d3f99-ea17-4a93-ba04-9744a8c099af"
RegistrationType="List"
Title="Developer User Action"
 RegistrationId="10015"
 Sequence="4"
 Location="CommandUI.Ribbon.DisplayForm">
<CommandUIExtension>
  <CommandUIDefinitions>
    <CommandUIDefinition Location="Ribbon.ListForm.Display.Actions.Controls._children">
      <Button 
        Id="Ribbon.ListForm.Display.Actions.DeveloperButton"
        Command="OpenWebPart"
        Image32by32="/_layouts/images/Masco/Icons-Large/note_edit.png"
        Image16by16="/_layouts/images/Masco/Icons-Small/note_edit.png"
        Sequence="4"
        LabelText="User/Developer Request"
        Description="Back and forth between developer/user to give results of request."
        TemplateAlias="o1" />
    </CommandUIDefinition>
  </CommandUIDefinitions>
  <CommandUIHandlers>
    <CommandUIHandler Command="OpenWebPart" CommandAction="javascript:window.open('http://www.google.ca')"></CommandUIHandler>
  </CommandUIHandlers>
</CommandUIExtension>
</CustomAction>
</Elements>
相关问题