Click here to Skip to main content
15,867,308 members
Articles / Programming Languages / C#

Multiselect DropDown ListBox Control for Web Applications

,
Rate me:
Please Sign up or sign in to vote.
4.94/5 (14 votes)
3 Dec 2008CPOL5 min read 106.3K   3.1K   41   26
Enables the user to select multiple options in a drop down
MultiSelect-DropDown

Introduction

The developer community has come across many scenarios where the customer would like to make multiple choices and the developer wishes to make intelligent usage of screen space. The objective of "multi select drop down list" (MSDD) control is to allow the user to select multiple options as in a check box list that behaves like a dropdown list. The multi select dropdown list (MSDD) will consume the space as of a dropdown list and deliver the functionality of a Check Box list.

Motivation Factor

By default, the .NET web programmers go by using the ListBox control with multi select option or the checkbox list. No doubt many of us would have felt the need to integrate the dropdown list and the checklist box. We have done just that in this article.

Features

This user control is built using C# as server side and JavaScript for client side scripting. The following lists the unique features:

  1. Ability to select multiple items
  2. Ability to attach JavaScript functions to check/uncheck events
  3. Higher z-index compared to the other web controls such as Listbox and dropdown which have relatively higher Z-index than the normal web controls. This prevents the Listbox/dropdown list in a page overriding the multi select dropdown panel.
  4. Highlight property - highlights the item when the mouse hovers over the item. The highlight color is fixed
  5. Filter property - moves to the item with the alphabet keyed, only when the scroll bar appears

About the Control

Important Properties

  1. Client scripts can be added using attributes to the control
  2. The selected items can be read as either comma separated values or as array list. The selected items will also be displayed by the tooltip.
  3. The text "All" and "Please select" will be displayed when all the options are selected or none selected respectively. 
  4. Hooking the event handlers.

Usage Flow

Initialising the Control

The control has to be initialized on page load, if the properties size, colors, etc. are set at runtime rather than at design time.

C#
  private void InitialiseDropDownControls()
        {
            // To set the background colors
            // multiselect_foodItems.TextBoxBackColor = 
			System.Drawing.Color.FromName("#FFFFE6");
            // multiselect_foodItems.DropDownBackColor = System.Drawing.Color.Aqua;
            // Set the height and width of dropdown controls.
            // The default size is set in pixels.
            multiselect_foodItems.Width = 160;
            multiselect_foodItems.Height = 15;

            multiselect_Juices.Width = 160;
            multiselect_Juices.Height= 15;
//Any attributes to be added to the checkboxlist.
//These events will be performed ahead of the default events that come with the control
            multiselect_foodItems.AddAttribute("onclick", "alert('test');");
        }

Setting the Datasource 

The multiselect drop-down supports the dataset and the list items as the data source. It is not yet tested with other data sources such as object, XML, etc.

C#
private void LoadData()
        {
            //Binding the Dataset as the datasource
            multiselect_foodItems.DataSource = GetFoodItems().Tables[0];
            multiselect_foodItems.DataTextField = "FoodItems";
            multiselect_foodItems.DataBind();
            // Using the list item to add items
            multiselect_Juices.Items.Add("Apple");
            multiselect_Juices.Items.Add(new ListItem("Orange"));
            ListItem item = new ListItem("Grapes");
            multiselect_Juices.Items.Add(item);
        }

Attaching Scripts

The JavaScript functions can be attached to the check/uncheck event as follows:

JavaScript
multiselect_foodItems.AddAttribute("onclick", "alert('test');");

Any events that are added to the default events (those that come along with the control such as the "onclick" event) will be performed after the default event. This will help the user to perform actions apart from the defaults. For e.g.: Enable another control based on the value selected.

Collapse dropdown

The dropdown opens up when user clicks anywhere on the control and is hidden when the user clicks anywhere outside the control.

Events

The server side event handler for checkbox selected item change has been provided. The event has to be hooked on the containing class as follows:

C#
multiselect_Juices.OnMSDDSelectedIndexChanged += 
	new Controls.MultiselectDropDownListBox.OnList_SelectedIndexChangedEventHandler
	(multiselect_Juices_OnMSDDSelectedIndexChanged);

multiselect_Juices_OnMSDDSelectedIndexChanged is the method that will be invoked on the event.

Changing the Highlight Color

If the user is interested in changing the highlight color, he can do so in the style sheet class itemSelected.

Challenges Faced

Why CheckBoxList Rather than Adding the HTML Checkbox at Runtime?

Initially, we thought of constructing a dynamic checkbox within a div on the server side and display/hide the div on click events. However, we realized that we will have problems in retaining state, for server side operations and will need to loop through the items when bound to the dataobjects. Hence, the checkbox list was chosen which will make things easier.

Attributes of ListItem

In .NET Frameworks 1.0 and 1.1, the attributes added to the listitem are not rendered. This is a bug with all the controls using the listitem. This had to be circumvented while the page is rendered. In .NET Framework 2.0, this has been rectified and the attributes of the listitem are rendered. However, when the dataset or any other datasource is bound to the checkbox list, item highlight "onmouseover" and to check/uncheck items when clicked anywhere on the item (not specifically on the label/checkbox) will need to be handled while the control is rendered.

Positioning of the CheckBoxList

The positioning of the checkbox list to be in alignment with the textbox has been calculated based on the offsetLeft of all its parents, but cannot be guaranteed for accuracy in all cases. For proper positioning, if the control is placed inside HTML tables, remember to set the cellpadding and cellspacing attributes. When these attributes are set to values other than zero and you feel that the checkbox list does not align with the textbox, try modifying the curleft variable set in the Left function in MultiselectListBox.js file. Please note that this is valid only when the "RepeatLayout" property of the checkbox list has been set to "Table" (default value of the control).

C#
if(obj.parentElement.tagName.toUpperCase() == "TABLE")
	{
	        curleft -= Number(obj.parentElement.getAttribute('cellspacing'));
	        curleft -= Number(obj.parentElement.getAttribute('cellpadding'));
	}

Higher Z-index for the Checkboxlist Control

When the div is positioned dynamically, the checkboxlist inside the div is overridden by controls such as the listbox which are actually placed beneath the div and the containing checkboxlist. To overcome this issue, an iframe was positioned as the div, so that the div gets a higher z-index value. The iframe overrides the listbox control and hence the div and the checkboxlist are shown. Here the src of the iframe is not set.

Enhancements

A MultiselectEventArgs derived from EventArgs can be used. This can hold the list of selected items and its corresponding indexes.

The code has been tested only on Internet Explorer. It needs changes to make it compatible with other browsers.

History

  • Version - v1.1. - Fixed the scrolling issue

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Written By
Software Developer iNautix Technologies India Pvt Ltd
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
PraiseMultiSelect DropdownList Using jQuery in Asp.Net MVC and C#.Net Pin
Member 123685433-Mar-16 18:40
Member 123685433-Mar-16 18:40 
QuestionAdd Textboxes in this Control Pin
Member 1075349317-Apr-14 19:28
Member 1075349317-Apr-14 19:28 
GeneralMy vote of 1 Pin
ziaalam22-Feb-12 23:26
ziaalam22-Feb-12 23:26 
GeneralMultiselect DropDown ListBox Control for Web Applications Pin
mmdba2-Aug-10 12:09
mmdba2-Aug-10 12:09 
GeneralMultiselect combobox - simpler solution Pin
lianaent4-Dec-09 8:55
lianaent4-Dec-09 8:55 
GeneralRe: Multiselect combobox - simpler solution Pin
K_kevin483353-Sep-10 7:19
K_kevin483353-Sep-10 7:19 
QuestionDataset Pin
DanielHH27-Nov-08 7:20
DanielHH27-Nov-08 7:20 
AnswerRe: Dataset Pin
Saleena29-Nov-08 1:29
Saleena29-Nov-08 1:29 
QuestionRe: Dataset Pin
DanielHH29-Nov-08 5:00
DanielHH29-Nov-08 5:00 
AnswerRe: Dataset Pin
Saleena29-Nov-08 20:40
Saleena29-Nov-08 20:40 
GeneralRe: Dataset Pin
DanielHH30-Nov-08 10:00
DanielHH30-Nov-08 10:00 
GeneralRe: Dataset Pin
Saleena30-Nov-08 20:12
Saleena30-Nov-08 20:12 
QuestionRe: Dataset Pin
DanielHH2-Dec-08 7:12
DanielHH2-Dec-08 7:12 
AnswerRe: Dataset Pin
Saleena3-Dec-08 6:57
Saleena3-Dec-08 6:57 
QuestionRe: Dataset Pin
DanielHH3-Dec-08 10:12
DanielHH3-Dec-08 10:12 
AnswerRe: Dataset Pin
Saleena3-Dec-08 18:49
Saleena3-Dec-08 18:49 
QuestionRe: Dataset Pin
DanielHH4-Dec-08 11:07
DanielHH4-Dec-08 11:07 
AnswerRe: Dataset Pin
Saleena5-Dec-08 6:22
Saleena5-Dec-08 6:22 
QuestionRe: Dataset Pin
DanielHH6-Dec-08 3:07
DanielHH6-Dec-08 3:07 
AnswerRe: Dataset Pin
Saleena6-Dec-08 6:35
Saleena6-Dec-08 6:35 
GeneralMy vote of 1 Pin
Sandeep Mewara26-Nov-08 0:52
mveSandeep Mewara26-Nov-08 0:52 
GeneralRe: My vote of 1 Pin
Saleena26-Nov-08 23:37
Saleena26-Nov-08 23:37 
RantRe: My vote of 1 - for your message! Pin
timh_em3-Dec-08 22:21
timh_em3-Dec-08 22:21 
AnswerRe: My vote of 1 - for your message! Pin
Sandeep Mewara7-Dec-08 6:25
mveSandeep Mewara7-Dec-08 6:25 
GeneralPlease fix your links Pin
fwsouthern11-Nov-08 9:21
fwsouthern11-Nov-08 9:21 
Only your "images" link is functional -- please correct.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.