SharePoint Entwicklung von Webparts mit Toolbox

Jedes Webpart hat Eigenschaften, die man bearbeiten kann, sobald man das Webpart auf einer Seite hinzugefügt hat. Diese Webpart Einstellungen werden oft auch als Toolbox bezeichnet.  Die sogenannte Toolbox öffnet sich immer rechts und dort befinden sich alle Angaben zu Größe, Breite, Anzeigeeinstellungen, etc. eines Webparts.

Der Einsatz dieser Toolbox bei eigenentwickelten Webparts macht durchaus Sinn, denn so können Webparts als wirkliche Vorlage für bestimmte Zwecke genutzt werden und je nach Einsatz durch den Anwender konfiguriert werden. Damit ist beispielsweise ein Webpart zur Anzeige von Flash-Filmen flexibel einsetzbar, in dem der Anwender die Breite, Höhe und Quelle bzw. Url angeben könnte.

Nachfolgend eine kurzes Beschreibung, wie das geht und welche Optionen bestehen.

1. Variable mit Default Wert erstellen
        protected int flashWidth = 400; 

2. Die Anzeige einstellen
 
 
        [WebBrowsable(true),
        SPWebCategoryName(“Flash Info”),
        DefaultValue(400),      Personalizable(PersonalizationScope.Shared),
        WebPartStorage(Storage.Shared),
        WebDisplayName(“Width”),
        WebDescription(“Width of the web part”)]

3. Das Feld zur Eingabe definieren

        public int FlashWidth
        {
            get
            {
                return this.flashWidth;
            }
            set
            {
                this.flashWidth = value;
            }
        }

 Das wars. Wer nun andere Eingabeoptionen nutzen möchte, sollte sich den Link anschauen.

Checkbox in Toolbox einfügen:

[WebBrowsable(true),
Category(“Miscellaneous”),
Personalizable(PersonalizationScope.Shared),
WebDisplayName(“Checkbox Option Text”)]
public bool CustomCheckboxProp { get; set; } 

Dropdown in Toolbox einfügen:

private enum ddlEnum { option1, option2, option3 }
[WebBrowsable(true),
Category(“Miscellaneous”),
Personalizable(PersonalizationScope.Shared)
WebDisplayName(“Dropdown List Display Text”)]
public ddlEnum ddlProp { get; set; }

Ein einfaches Beispiel für die Toolbox und die o.g. Flashanzeige könnte wie folgt aussehen:

 

 

 

 

 

..:: I LIKE SHAREPOINT ::..

The article or information provided here represents completely my own personal view & thought. It is recommended to test the content or scripts of the site in the lab, before making use in the production environment & use it completely at your own risk. The articles, scripts, suggestions or tricks published on the site are provided AS-IS with no warranties or guarantees and confers no rights.

About Karsten Schneider 312 Articles
Consultant for Microsoft 365 Applications with a strong focus in Teams, SharePoint Online, OneDrive for Business as well as PowerPlatform with PowerApps, Flow and PowerBI. I provide Workshops for Governance & Security in Office 365 and Development of Solutions in the area of Collaboration and Teamwork based on Microsoft 365 and Azure Cloud Solutions. In his free time he tries to collect tipps and worthy experience in this blog.

Be the first to comment

Leave a Reply

Your email address will not be published.


*