Click here to Skip to main content
Licence CPOL
First Posted 18 Mar 2010
Views 29,277
Downloads 2,689
Bookmarked 39 times

A Multiple Selection DropDownList (a CheckBoxList Inside a DropDownList)

By leoivix | 19 Mar 2010
Check and mark more than one option in a DropDownList

1

2

3
3 votes, 60.0%
4
2 votes, 40.0%
5
4.33/5 - 5 votes
μ 4.33, σa 0.88 [?]

Introduction

This ascx user control, the MultiCheckCombo, allows the user to select more than one option inside a DropDownList. The different items that are being checked are being copied in the box area of the control.

The great thing of this control is that it doesn't close the check panel until you click outside the control. Example: you can check more than one item at once.

In ASP.NET C#, if you need a web control that allows the user to check more than one option in a DropDownList, you can use this user control freely.

Background

Well, first of all, this control was made in Microsoft Visual Studio 2008, with .NET 3.5 (2.0) and was written in C#. To use it, you need to have properly installed the AjaxControlToolkit in your project.

Using the Code

Again: You need to have installed the AjaxControlToolkit in your project.

This control is fairly easy to implement. Simply copy the 3 ascx files into your project.

Then replace the namespace in both ascx and ascx.cs files with [YourProjectName].MultiCheckCombo.

E.g.: Let's suppose your project's name is TestMultiCheck, replace in the ascx file the Control tag with the name of your namespace/project:

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="MultiCheckCombo.ascx.cs" 
    Inherits="TestMultiCheck.MultiCheckCombo" %>

And in your ascx.cs file, change the namespace to:

namespace TestMultiCheck

Well, then drag and drop the main file (MultiCheckCombo.ascx) to your Page Designer.

You may drag the control inside or outside an UpdatePanel, but you need a ScriptManager at the beginning of the body tag of your aspx page.

<asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> 

When you drag the control, the following line should be added automatically to the beginning of your aspx page:

<%@ Register src="MultiCheckCombo.ascx" tagname="MultiCheckCombo" tagprefix="uc1" %>

And the code of the control looks like this (it also will be added automatically):

<uc1:MultiCheckCombo ID="MultiCheckCombo1" runat="server" />        

Then, in the code behind (C#), you have to fill the values of the control.

You can fill it with an ArrayList or with an OdbcDataReader.

A: Easy mode: Filling the MultiCheckCombo with an ArrayList:

ArrayList array = new ArrayList();
for (int i=0;i<100;i++) array.Add(i.ToString());
MultiCheckCombo1.AddItems(array);

B: Other option is to fill the MultiCheckCombo with an OdbcDataReader:

OdbcConnection con = /* get YOUR connection string*/
con.Open();
OdbcCommand cmd = new OdbcCommand();
cmd.Connection = con;
cmd.CommandText = "select text,id from ...........";
OdbcDataReader dr = cmd.ExecuteReader();
MultiCheckCombo1.ClearAll();
dr.Read(); 
MultiCheckCombo1.AddItems(dr, "text", "id");

And that's it. You can now test it.

Some important properties of this controls are:

MultiCheckCombo1.WidthCheckListBox = 200; //Set the Width of the CheckBoxList inside DDL.
MultiCheckCombo1.Width = 250; //Set the Width of the DropDownList
MultiCheckCombo1.Enabled = true;
MultiCheckCombo1.fontSizeCheckBoxList = FontUnit.Small; 
MultiCheckCombo1.fontSizeTextBox = FontUnit.XSmall;
MultiCheckCombo1.Text; //Get or Set the Text shown in the Combo

Some important methods of this control are:

MultiCheckCombo1.unselectAllItems(); //Uncheck all of the Items of the CheckBox
MultiCheckCombo1.ClearAll(); //Delete all the Items of the CheckBox;

Points of Interest

I hope you can make it work. Cheers! ENJOY IT!

By the way, my e-mail is leoivix@hotmail.com.

License

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

About the Author

leoivix

Web Developer

Argentina Argentina

Member
Systems Eng.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionTakes up multiple lines in datagrid PinmemberMember 21918279:13 26 Oct '11  
QuestionUndefined value in text box Pinmemberfaisalharoon19:38 3 Oct '11  
AnswerRe: Undefined value in text box Pinmemberleoivix3:10 4 Oct '11  
GeneralRe: Undefined value in text box Pinmemberfaisalharoon23:59 5 Oct '11  
AnswerRe: Undefined value in text box Pinmemberbimboy_1439:49 11 Nov '11  
Questioninstantiate via code Pinmembermikeng1118:37 21 Sep '11  
Questionget ID and Text from it Pinmemberyasserzaid16:40 28 Aug '11  
AnswerRe: get ID and Text from it [modified] Pinmemberleoivix3:24 30 Aug '11  
GeneralMy vote of 5 PinmemberMember 79886210:35 27 Jul '11  
Generalmultiple MultiCheckCombo in same page PinmemberMarco Trova0:04 17 Aug '10  
GeneralRe: multiple MultiCheckCombo in same page Pinmemberboonjiann19:23 16 Sep '10  
GeneralRe: multiple MultiCheckCombo in same page Pinmembermath2019:33 21 Jul '11  
BugRe: multiple MultiCheckCombo in same page Pinmemberbhfaisal22:55 9 Aug '11  
QuestionEvents for this conrol PinmemberThushar Saseendran4:11 4 Aug '10  
GeneralLoad Error PinmemberMegha092:33 22 Jul '10  
Generalsome douts Pinmemberravanth19:30 18 Mar '10  
GeneralRe: some douts Pinmemberleoivix4:17 19 Mar '10  
GeneralRe: some douts Pinmemberravanth19:38 22 Mar '10  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120210.1 | Last Updated 19 Mar 2010
Article Copyright 2010 by leoivix
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid