Elements 要素 (カスタム アクション)
最終更新日: 2015年3月9日
適用対象: SharePoint Foundation 2010
この記事の内容
属性
子要素
親要素
Feature 要素の宣言を含むフィーチャー マニフェスト ファイルの最上位要素です。
<Elements
Id = "Text">
</Elements>
属性
属性 |
説明 |
---|---|
xmlns |
必須。XML 名前空間を識別します。値は、https://schemas.microsoft.com/sharepoint/ である必要があります。 |
Id |
オプションの Text。フィーチャー マニフェスト ファイルを表す一意識別子を指定します。 |
子要素
親要素
なし
例
次の例では、Server リボンにボタンを追加するカスタム アクションを定義しています。
<Elements xmlns="https://schemas.microsoft.com/sharepoint/">
<CustomAction
Id="Ribbon.Library.Actions.AddAButton"
Location="CommandUI.Ribbon"
RegistrationId="101"
RegistrationType="List"
Title="Add a Ribbon Button">
<CommandUIExtension>
<CommandUIDefinitions>
<CommandUIDefinition
Location="Ribbon.Library.Share.Controls._children">
<Button Id="Ribbon.Library.Share.NewRibbonButton"
Command="NewRibbonButtonCommand"
Image16by16="Insert an image URL here."
Image32by32="Insert an image URL here."
LabelText="Hello World"
TemplateAlias="o2" />
</CommandUIDefinition>
</CommandUIDefinitions>
<CommandUIHandlers>
<CommandUIHandler
Command="NewRibbonButtonCommand"
CommandAction="javascript:alert('Hello, world');" />
</CommandUIHandlers>
</CommandUIExtension>
</CustomAction>
</Elements>