Click here to Skip to main content
Click here to Skip to main content

JavaScript ListBox Control

By , 24 Jul 2008
 
Prize winner in Competition "Best ASP.NET article of June 2008"
preview.gif

Introduction

JavaScript ListBox Control is a cross-browser JavaScript class. It is a sub set of HTML select element with attribute size >= 2.

Background

As you know, in the HTML ListBox element (select element with attribute size >=2), if you want to select multiple items, then you have to press & hold the Ctrl key during the process of selecting items. In a project, a client wanted a CheckBox against each item of the ListBox so that there was no need to press & hold Ctrl key while selecting multiple items. As HTML ListBox does not support CheckBox against each item, I've decided to develop my own custom ListBox control through JavaScript.

Constructor

ListBox Control has the following constructor:

ListBox(Arguments): The constructor of the ListBox class takes an argument of the type Object Literal. The definition of the argument Object Literal is given below:

var Arguments = {
      Base: _Base, //Base reference where ListBox to be displayed.
      Rows: _Rows, //No. of visible items.
      Width: _Width, // Width of the ListBox.
      NormalItemColor: _NormalItemColor, // Normal item color.
      NormalItemBackColor: _NormalItemBackColor, // Normal item back color.
      AlternateItemColor: _AlternateItemColor, // Alternate item color.
      AlternateItemBackColor: _AlternateItemBackColor, // Alternate item back color.
      SelectedItemColor: _SelectedItemColor, // Selected item color.
      SelectedIItemBackColor: _SelectedIItemBackColor, // SelectedI item back color.
      HoverItemColor: _HoverItemColor, // Hover item color.
      HoverItemBackColor: _HoverItemBackColor, // Hover item back color.
      HoverBorderdColor: _HoverBorderdColor, // Hover bordered color.
      ClickEventHandler: _ClickEventHandler // Reference of the click event handler. 
 };

Example:

var Arguments = {
            Base: document.getElementById('base'),
            Rows: 6,
            Width: 300,
            NormalItemColor: 'Black',
            NormalItemBackColor: '#ffffff',
            AlternateItemColor: 'Black',
            AlternateItemBackColor: '#E0E0E0',
            SelectedItemColor: '#ffffff',
            SelectedIItemBackColor: '#E6A301',
            HoverItemColor: '#ffffff',
            HoverItemBackColor: '#2259D7',
            HoverBorderdColor: 'orange',
            ClickEventHandler: CheckBoxOnClick
        };

You can assign each property of the argument Object Literal to null. In this case, each property will acquire its default value as:

var Arguments = {
            Base: null,
            Rows: null,
            Width: null,
            NormalItemColor: null,
            NormalItemBackColor: null,
            AlternateItemColor: null,
            AlternateItemBackColor: null,
            SelectedItemColor: null,
            SelectedIItemBackColor: null,
            HoverItemColor: null,
            HoverItemBackColor: null,
            HoverBorderdColor: null,
            ClickEventHandler: null
        };

Properties & their default values have been tabulated below:

Property Default Value
Base document.documentElement
Rows 6
Width 300
NormalItemColor 'Black'
NormalItemBackColor '#ffffff'
AlternateItemColor 'Black'
AlternateItemBackColor '#E0E0E0'
SelectedItemColor '#ffffff'
SelectedIItemBackColor '#E6A301'
HoverItemColor '#ffffff'
HoverItemBackColor '#2259D7'
HoverBorderdColor 'orange'
ClickEventHandler Anonymous method

Methods

ListBox Control has the following public methods:

  • AddItem(Text, Value): Used to add a ListBox Item. It takes two arguments:
    • Text: Item Text
    • Value: Item Value
  • GetItems(): Used to get collection of all LBItem(ListBox Item)
  • GetItem(Index): Used to get a LBItem(ListBox Item) at a given Item index. Returns null in case Item isn't found. It takes one argument:
    • Index: Item Index.
  • DeleteItems(): Used to delete all the ListBox Items. Returns numbers of Items deleted
  • DeleteItem(Index): Used to delete a ListBox Item at a given Item index. Returns true on successful deletion, else false. It takes one argument:
    • Index: Item Index
  • GetTotalItems(): Used to get total number of ListBox Items
  • Contains(Index): Used to check whether a ListBox Item exists at a given Item index or not. Returns true if Item exists, else false. It takes one argument:
    • Index: Item Index
  • Dispose(): Used to destroy ListBox Object

Note: The LBItem is an Object Literal and has the following definition:

var LBItem = {
   IsSelected: _IsSelected, // true/false.
   Text: _Text, // Item Text.
   Value: _Value, // Item Value.
   ItemIndex: _ItemIndex // Item Index.
}; 

Property

ListBox Control has only one property:

  • Version: Used to get the current version of the ListBox Control

Event

ListBox Control has only one event:

  • Click: Fires when any one Item CheckBox is clicked

The local anonymous method that responds to the click event (i.e. event handler) has the following signature:

 var EventHandlerName = function(Sender, EventArgs) {}

Here Sender is the reference of the element (in this case the Item CheckBox) that raises the click event & EventArgs is a Object Literal that contains necessary information regarding the event. EventArgs Object Literal has the following definition:

var EventArgs = {
    Text: _Text, // Item Text.
    Value: _Value, // Item Value.
    ItemIndex: _ItemIndex // Item Index.
}; 

Using the Control

Add the reference of the ListBox.js file in your web page as:

<script type="text/javascript" src="JS/ ListBox.js"></script>

Create a div element in the web page as:

<div id="base"></div>

Now create a script tag in the head section of the web page & put the following code in the window.onload event as:

<script type="text/javascript">
    var oListBox;
    window.onload = function()
    {        
        var Arguments = {
            Base: document.getElementById('base'),
            Rows: 3,
            Width: 300,
            NormalItemColor: null,
            NormalItemBackColor: null,
            AlternateItemColor: null,
            AlternateItemBackColor: null,
            SelectedItemColor: null,
            SelectedIItemBackColor: null,
            HoverItemColor: null,
            HoverItemBackColor: null,
            HoverBorderdColor: null,
            ClickEventHandler: OnClick
        };
        
        oListBox = new ListBox(Arguments); 

        oListBox.AddItem('CodeProject.com','http://www.codeproject.com');
        oListBox.AddItem('yahoo.com','http://www.yahoo.com/');
        oListBox.AddItem
		('microsoft.com','http://www.microsoft.com/en/us/default.aspx');
        oListBox.AddItem('asp.net','http://www.asp.net');
        oListBox.AddItem('cricinfo.com','http://www.cricinfo.com/');
        oListBox.AddItem('AOL','http://www.aol.com/');
        oListBox.AddItem('STPL','http://stpl.biz');
    }
</script>

In the above code, first an argument Object Literal with necessary properties has been created. After that ListBox has been instantiated using new keyword. Finally different ListBox Items have been added to the ListBox Object. Don't forget the click event wire up in the argument Object Literal as:

ClickEventListener: OnClick

Where OnClick is the reference of the click event handler which is created as a local anonymous method:

var OnClick = function(Sender, EventArgs)
{
    //Code 
} 

Example:

var OnClick = function(Sender, EventArgs)
{
    var Message = new Array();

    Message.push('IsSelected: ' + Sender.checked.toString());
    Message.push('Text: ' + EventArgs.Text);
    Message.push('Value: ' + EventArgs.Value);
    Message.push('Index: ' + EventArgs.ItemIndex);

    document.getElementById('DivMessage').innerHTML = Message.join('<br />');
}

This method will get called when you will click on any one Item CheckBox of the ListBox control.

Invoke the Dispose method in the window.onunload event in order to destroy ListBox Object as:

window.onunload = function(){oListBox.Dispose(); }

Conclusion

So this is my approach to develop custom JavaScript ListBox control. Although it is only a subset of existing HTML ListBox element, it is more user friendly than the existing one. It can be further customized for different requirements. Please let me know about bugs and/or errors & give suggestions to improve this ListBox control.

Browser Compatibility

I have tested this control on a number of web browsers.

Browsers.png

License

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

About the Author

Samir NIGAM
Team Leader
India India
Member
SAMIR NIGAM is a CodeProject MVP, a Microsoft Certified Technology
Specialist (MCTS)
as well as a Microsoft Certified Professional Developer (MCPD)
in C# for web-based applications. He is an insightful IT professional with
results-driven comprehensive technical skill having rich, hands-on work experience
in web-based applications using ASP.NET, C#, AJAX, Microsoft
Enterprise Library
, MS SQL Server 2005.
He has earned his master degree (MCA) from U.P. Technical University, Lucknow,
INDIA, his post graduate dipoma (PGDCA ) from Institute of Engineering and
Rural Technology, Allahabad, INDIA and his bachelor degree (BSc - Mathematics)
from University of Allahabad, Allahabad, INDIA.
He has good knowledge of Object Oriented Programming, 3-Tier Architecture
and Algorithm Analysis & Design as well as good command over cross-browser
client side programming using JavaScript.
Awards:


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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questionhow will you populate it from databasemembersairfan15 Jan '12 - 19:01 
GeneralVery nice article! One little bug..memberMark Giese9 May '10 - 17:52 
GeneralJSPmemberpandajericho26 Oct '08 - 6:30 
GeneralGeneral QuerymemberAbhijit Jana22 Oct '08 - 18:26 
GeneralRe: General QuerymemberSameer NIGAM22 Oct '08 - 19:01 
GeneralRe: General QuerymemberAbhijit Jana23 Oct '08 - 19:43 
GeneralMultiple contols on a pagememberbjmbrown29 Sep '08 - 5:11 
GeneralRe: Multiple contols on a pagememberSameer NIGAM29 Sep '08 - 18:03 
QuestionHow can we check all the items on a button clickmembershahu28 Sep '08 - 23:36 
AnswerRe: How can we check all the items on a button clickmemberSameer NIGAM29 Sep '08 - 18:05 
QuestionHow to do Drag and Drop in single listbox through javaScriptmemberAchyutanand Nayak28 Sep '08 - 21:19 
AnswerRe: How to do Drag and Drop in single listbox through javaScriptmemberSameer NIGAM29 Sep '08 - 18:09 
GeneralRe: How to do Drag and Drop in single listbox through javaScriptmemberAchyutanand Nayak2 Oct '08 - 18:50 
QuestionHow can this support DB load?? [modified]memberJLKEngine00817 Sep '08 - 18:27 
AnswerRe: How can this support DB load??memberSameer NIGAM29 Sep '08 - 18:35 
GeneralOne more thing Please help fastmemberBhatt Saurabh11 Sep '08 - 4:11 
GeneralRe: One more thing Please help fastmemberSameer NIGAM29 Sep '08 - 18:32 
QuestionGreat Job but one querymemberBhatt Saurabh11 Sep '08 - 2:08 
AnswerRe: Great Job but one querymemberSameer NIGAM29 Sep '08 - 18:31 
QuestionMulti-column functionality??memberJLKEngine0081 Sep '08 - 17:56 
AnswerRe: Multi-column functionality??memberSameer NIGAM29 Sep '08 - 18:23 
Questioncan you suopport multi cols?memberJLKEngine0081 Sep '08 - 17:05 
AnswerRe: can you suopport multi cols?memberSameer NIGAM29 Sep '08 - 18:21 
Questionhow can I load data?memberJLKEngine0081 Sep '08 - 17:04 
AnswerRe: how can I load data?memberSameer NIGAM29 Sep '08 - 18:20 
GeneralThanks Again !!memberAbhijit Jana25 Aug '08 - 16:53 
GeneralRe: Thanks Again !!memberSameer NIGAM29 Sep '08 - 18:15 
GeneralCongratulation !!!memberAbhijit Jana24 Aug '08 - 22:00 
GeneralRe: Congratulation !!!memberSAMir Nigam24 Aug '08 - 22:28 
GeneralGreatmemberAarti Srivastava12 Aug '08 - 0:30 
GeneralRe: GreatmemberSAMir Nigam12 Aug '08 - 3:14 
GeneralCongratsmemberAnil Srivastava25 Jul '08 - 3:55 
GeneralRe: CongratsmemberSAMir Nigam25 Jul '08 - 19:07 
GeneralCongratulationmemberMS00824 Jul '08 - 22:27 
GeneralRe: CongratulationmemberSAMir Nigam24 Jul '08 - 22:28 
GeneralCongrats DEar Samirmemberlko.abhishek23 Jul '08 - 0:15 
GeneralRe: Congrats DEar SamirmemberSAMir Nigam23 Jul '08 - 0:27 
GeneralGreat job and here are some suggestions to make it even greatermemberGary Dryden22 Jul '08 - 5:11 
GeneralRe: Great job and here are some suggestions to make it even greatermemberSAMir Nigam23 Jul '08 - 0:29 
GeneralRe: Great job and here are some suggestions to make it even greatermemberGary Dryden23 Jul '08 - 2:32 
GeneralRe: Great job and here are some suggestions to make it even greatermemberSAMir Nigam23 Jul '08 - 2:38 
GeneralRe: Great job and here are some suggestions to make it even greatermemberGary Dryden23 Jul '08 - 2:42 
GeneralRe: Great job and here are some suggestions to make it even greatermemberSAMir Nigam23 Jul '08 - 2:45 
GeneralCongratulations for getting the First Prize For the ArticlememberSandeep Shekhar21 Jul '08 - 22:25 
GeneralRe: Congratulations for getting the First Prize For the ArticlememberSAMir Nigam21 Jul '08 - 23:23 
GeneralGood Jobmembersumeet197721 Jul '08 - 19:30 
GeneralRe: Good JobmemberSAMir Nigam21 Jul '08 - 19:57 
GeneralCongrats !!!memberashu fouzdar21 Jul '08 - 19:22 
GeneralRe: Congrats !!!memberSAMir Nigam21 Jul '08 - 19:58 
GeneralGreat samirmemberMCSDvikasmisra21 Jul '08 - 18:36 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 25 Jul 2008
Article Copyright 2008 by Samir NIGAM
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid