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="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>
4

1 に答える 1