1 / 11

« Les Mercredis du développement » Les WebParts

Présenté par Pierre Lagarde pierlag@microsoft.com Relation Développeurs Microsoft France. « Les Mercredis du développement » Les WebParts. Level 300. Les Web Parts en ASP.NET v2. Framework de construction de portal Moteur de rendu de Windows SharePoint Service

sutton
Download Presentation

« Les Mercredis du développement » Les WebParts

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Présenté par Pierre Lagarde pierlag@microsoft.com Relation Développeurs Microsoft France « Les Mercredis du développement »Les WebParts Level 300

  2. Les Web Parts en ASP.NET v2 • Framework de construction de portal • Moteur de rendu de Windows SharePoint Service • System.Web.UI.WebControls.WebParts • Interface utilisateur très riche • Construction du portail en drag-and-drop • Édition des propriétés • Intégration de la personnalisation • Connexion entre WebPart

  3. 1: Première page de WebPart demo

  4. WebParts Object-Model WebPartManager WebZone WebPartZoneBase WebPartZone ToolZone WebPart CatalogZone GenericWebPart EditorZone CustomWebPart ConnectionsZone UserControl.Parent

  5. Personnalisation API • WebPartManager.Personalization • Tache disponible • Effacer la personnalisation • Vérifier la configuration

  6. Personnalisation API • WebPart Provider • Dans le fichier web.config dans la section <webParts> • Brancher son propre provider <webParts> <personalizationdefaultProvider="MyProvider"> <authorization> <allowroles="BUILTIN\Administrators"/> <denyroles="BUILTIN\Guests" /> </authorization> <providers> <addname="MyProvider" type="System.Web.UI.WebControls.WebParts.SqlPersonalizationProvider" connectionStringName="CustomSqlConnection" /> </providers> </personalization> </webParts>

  7. WebParts de l’ « Editor Zone » <asp:EditorZone ID="EditorZone1" Runat="server"> <ZoneTemplate> <asp:AppearanceEditorPart ID=“AppearEdit" Runat="server" /> <asp:BehaviorEditorPart ID=“BehaveEdit" Runat="server" /> <asp:LayoutEditorPart ID=“LayoutEdit" Runat="server" /> </ZoneTemplate> </asp:EditorZone>

  8. Customisation des WebParts • Propriété disponible par l’éditeur de propriété standard (Sauvegardé dans le moteur de personnalisation) • [WebBrowsable(true)] • [Personalizable(PersonalizationScope.User)] • Accès au propriétés standard d’une WebPart • IWebPart • Customiser un éditeur de propriété • IWebEditable • Customiser sont menucontextuel • IWebActionable

  9. Customisation des WebParts (suite) • Connexion entre WebPart public interface IWebPartConnector { string Name{get;} } public partial class MyUc : UserControl, IWebPartConnector { … [ConnectionProvider(“Server WebConnector", "MyProviderID")] public IWebPartConnector GetWebPartForConnection() { return this; } } public partial class MyUc2 : UserControl { … [ConnectionConsumer("Client WebConnector", "MyConsumerID")] public void InitProvider(IWebPartConnector provider) { _webPartConnector = provider; } }

  10. 2 : Un UserControl Personnalisable Paramétrable Extension de son menu contextuel Ajout d’un éditeur de propriétés personnalisé Connecté demo

More Related