Elements, élément (Action personnalisée)
Dernière modification : mercredi 23 juin 2010
S’applique à : SharePoint Foundation 2010
Dans cet article
Attributs
Éléments enfants
Éléments parents
Élément de niveau supérieur d'un fichier manifeste Feature contenant des déclarations de l'élément Feature.
<Elements
Id = "Text">
</Elements>
Attributs
Attribut |
Description |
---|---|
xmlns |
Obligatoire. Identifie l’espace de noms XML. La valeur doit être https://schemas.microsoft.com/sharepoint/. |
Id |
Argument Text facultatif. Spécifie un identificateur unique pour le fichier manifeste Feature. |
Éléments enfants
Éléments parents
Aucun
Exemple
L’exemple suivant définit une action personnalisée qui ajoute un bouton au Ruban serveur.
<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>