Click here to Skip to main content
5,790,650 members and growing! (19,389 online)
Email Password   helpLost your password?
Web Development » ASP.NET » Samples     Intermediate

Display a DropDownList in a CatalogZone

By Wouter van Vugt

Shows how to customize the CatalogZone to display a DropDownList instead of checkboxes.
C#, Windows, .NET 2.0, .NET, ASP.NET, Visual Studio, VS2005, Dev

Posted: 12 Oct 2005
Updated: 12 Oct 2005
Views: 44,214
Bookmarked: 37 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
11 votes for this Article.
Popularity: 4.75 Rating: 4.57 out of 5
1 vote, 9.1%
1
0 votes, 0.0%
2
1 vote, 9.1%
3
1 vote, 9.1%
4
8 votes, 72.7%
5

The DropDownCatalogZone when used

Introduction

My last piece on a collapsible EditorZone got me really going. This time I’ll show how to create a CatalogZone which displays a dropdown combobox instead of a list of checkboxes.

There are two main components which need to interact to make this possible. A class derived from CatalogZone takes care of rendering the header and footer. This class is called DropDownCatalogZone. The header shows an informative title. The footer is used to display a dropdown combobox which can be used to select a WebPartZone to add the WebPart to. The footer also shows the ‘Add’ and ‘Close’ buttons used to add a WebPart from the catalog to the page and to close the zone again. For each CatalogPart which is displayed in the CatalogZone, a dropdown combobox is rendered by a class derived from CatalogPartChrome called DropDownCatalogPartChrome.

First let’s examine the DropDownCatalogPartChrome class. It contains one method used to render a CatalogPart. This method is displayed in figure 1. The implementation takes the following steps:

  1. Get the WebPart descriptions stored in the CatalogPart.
  2. Create a DropDownList.
  3. Attach the ID of the list to a preformatted ID in the CatalogZone. (I’ll explain the why later.)
  4. Add each WebPart description to the DropDownList.
  5. Render the list.
public override void RenderCatalogPart(HtmlTextWriter writer,
       CatalogPart catalogPart)
{
    WebPartDescriptionCollection partDescriptions =
        catalogPart.GetAvailableWebPartDescriptions();
    DropDownList list = new DropDownList();
    list.Width = new Unit(150, UnitType.Pixel);
    list.ID = ((DropDownCatalogZone)Zone).ModuleSelectorControlID;

    foreach (WebPartDescription description in partDescriptions)
    {
        list.Items.Add(new ListItem(description.Title, description.ID));
    }
    writer.Write("Select a module:");
    list.RenderControl(writer);
}

The interesting bit about this code is the use of the CatalogZone to provide the ID for the DropDownList. This is necessary because the Chrome class doesn’t load postback data itself, the DropDownCatalogZone loads this data based on the ID. By using it on the DropDownList, the DropDownCatalogZone is able to load the WebPartDescription of the selected item in the list.

The DropDownCatalogZone contains the bulk of the code. It will need to perform the following tasks:

  1. Create an instance of DropDownCatalogPartChrome.
  2. Render the header and footer.
  3. Handle postback data sent by the DropDownCatalogPartChrome class.
  4. Handle postback data sent by the buttons shown in the footer.

The first step is easy enough. A simple override of the CreateCatalogPartChrome is sufficient. The rendering of the header is trivial as well, it only writes a title to the output stream.

The third and fourth steps are more of a challenge. The DropDownCatalogZone will need to override the LoadPostData and RaisePostBackEvent methods. The LoadPostData method is used to load the selected WebPart and the selected WebPartZone from the posted values.

protected override bool LoadPostData(string postDataKey, 
                        NameValueCollection postCollection)
{
    _selectedPart = postCollection[ModuleSelectorControlID];
    _selectedZone = postCollection[ZoneSelectorControlID];
    return false;
}

The selected WebPart is loaded using the same key as used by the DropDownCatalogPartChrome class to render the DropDownList. The DropDownList which is rendered in the footer uses the same mechanism as used by the DropDownCatalogPartChrome class, but it uses a different ID, the ZoneSelectorControlID.

The RaisePostBackEvent method only needs to verify whether the postback is performed by the ‘Add’ button, and take the necessary actions to actually add the WebPart to the WebPartZone.

protected override void RaisePostBackEvent(string eventArgument)
{
    if (eventArgument == ((DropDownCatalogVerb)AddVerb).EventArgument &&
        AddVerb.Visible && AddVerb.Enabled)
    {
        WebPartZoneBase zone = base.WebPartManager.Zones[_selectedZone];
        WebPartDescriptionCollection descriptions =
            SelectedCatalogPart.GetAvailableWebPartDescriptions();
        WebPart webPart = SelectedCatalogPart.GetWebPart(
            descriptions[_selectedPart]);
        WebPartManager.AddWebPart(webPart, zone, 0);
    }
    base.RaisePostBackEvent(eventArgument);
}

The rest of the code found in the DropDownCatalogZone class is plumbing to wire up the ‘Add’ and ‘Remove’ buttons and handle their state management.

Just a few little steps were required to change the default behavior of the CatalogZone, happy coding!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Wouter van Vugt


Wouter van Vugt is a Microsoft MVP with Office Open XML technologies and an independent consultant focusing on creating Office Business Applications (OBAs) with SharePoint, the Office 2007 system and related .NET technologies. Wouter is a frequent contributor to developer community sites such as OpenXmlDeveloper.org and MSDN and has published several white papers and articles as well a book available on line titled Open XML: the markup explained. Wouter is the founder of Code-Counsel, a Dutch company focusing on delivering cutting-edge technical content through a variety of channels. You can find out more about Wouter by reading his blog and visiting the Code-Counsel Web site.

Occupation: Web Developer
Company: Code Counsel
Location: Netherlands Netherlands

Other popular ASP.NET articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 24 of 24 (Total in Forum: 24) (Refresh)FirstPrevNext
GeneralNice article but incomplete samplememberMember 1793306:45 28 Jun '08  
GeneralCheckbox control instead of Dropdown - having problemmemberVenkatesh Kumar10:13 21 May '08  
QuestionPlease Helpmemberhakeeem11:01 26 Feb '07  
AnswerRe: Please Help [modified]memberbsevo10:07 30 Sep '07  
QuestionRe: Please HelpmemberVenkatesh Kumar12:44 20 May '08  
Generalhow to use Gridview in Catalogzone template for displaymembersam_g120:33 23 Dec '06  
QuestionSaveViewState FailedmemberLuke XCS6:08 21 Sep '06  
AnswerRe: SaveViewState FailedmemberWouter van Vugt8:11 21 Sep '06  
GeneralRe: SaveViewState Failed [modified]memberLuke XCS8:37 21 Sep '06  
QuestionDisplay drag&drop webparts in a catalogzonemembershefali_sinha10:12 14 Sep '06  
AnswerRe: Display drag&drop webparts in a catalogzonememberWouter van Vugt20:07 14 Sep '06  
GeneralRe: Display drag&drop webparts in a catalogzonemembershefali_sinha12:13 19 Sep '06  
GeneralRe: Display drag&drop webparts in a catalogzonememberWouter van Vugt20:10 19 Sep '06  
GeneralRe: Display drag&drop webparts in a catalogzonemembershefali_sinha7:15 20 Sep '06  
GeneralRe: Display drag&drop webparts in a catalogzonememberWouter van Vugt9:32 20 Sep '06  
GeneralRe: Display drag&drop webparts in a catalogzonemembershefali_sinha10:44 22 Sep '06  
GeneralRe: Display drag&drop webparts in a catalogzonememberWDI3:30 5 Nov '06  
GeneralRe: Display drag&drop webparts in a catalogzonemembershefali_sinha2:47 6 Nov '06  
GeneralRe: Display drag&drop webparts in a catalogzonememberWDI21:40 4 Nov '06  
GeneralRe: Display drag&drop webparts in a catalogzonemembershefali_sinha2:52 6 Nov '06  
GeneralRe: Display drag&drop webparts in a catalogzonememberredowl5:46 1 Feb '07  
GeneralRe: Display drag&drop webparts in a catalogzonemembershefali_sinha17:08 4 Feb '07  
GeneralNice article butmemberrubal_pal5:40 22 Jun '06  
GeneralRe: Nice article butmemberrubal_pal5:50 22 Jun '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 12 Oct 2005
Editor: Smitha Vijayan
Copyright 2005 by Wouter van Vugt
Everything else Copyright © CodeProject, 1999-2009
Web12 | Advertise on the Code Project