Click here to Skip to main content
15,886,799 members
Articles / Programming Languages / Javascript

Moving Items between ListBoxes using JavaScript

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
12 Apr 2013CPOL2 min read 23.3K   2  
How to move items between ListBoxes using JavaScript

We all would have encountered the situation below where we are asked to select a few items from a list of items. The selected items are transferred to another listbox by clicking a simple button. I have put a sample screenshot of that below.

Image 1

Now Let's See How This Can Be Achieved Using JavaScript in ASP.NET

Create a new ASP.NET website in VS2010. Visual Studio will automatically add a default.aspx page which has a master page to it. Let's add the Listbox controls to the page. I’ll put the Listboxes and buttons in a table tag so that the output is better.

The code is as shown:

Image 2

Coming to the code...

You can see that I have added a label, two ListBoxes and two buttons, one to add items, the other to remove the items. The first listbox is populated with static data (You can also load data into it dynamically from database). The second ListBox is initially empty.

Before I explain the attributes of the "Button" control, I would like to explain the JavaScript function that I have written in order to perform the transfer of items. Again, a screenshot of the JavaScript function.

Image 3

The function takes two parameters:

  1. The source listbox ID
  2. The target listbox ID

I have put comments in the code so that it can be understood easily. Basically, what is happening in the function is the selected items in the source listbox are taken. New "Option" is created for the target listbox and the items are added into the target listbox. Also, the selected items are removed from the source listbox.

Now, coming back to the ASP.NET code, you can see that I have added an "OnClientClick" attribute to the button controls. This is because I have to call a JavaScript function on the Click event of the button. So for the "OnClientClick" attribute, we specify what type of script we are calling and also the name of the function along with parameters.

You can observe the following line in the OnClientClick attribute for the Add button:

JavaScript
OnClientClick="javascript:selectItems
(‘MainContent_lstboxItems’, ‘MainContent_lstboxSelectedItems’)"

If you get a doubt as to why I have put "MainContent_" before the IDs of the source listbox and the Target listbox, the reason is, our Default.aspx is placed inside a content placeholder. Remember I mentioned that default.aspx has a master page to it earlier in this post?

So when a page placed in a content place holder is rendered, the IDs of all the controls in the page are Prefixed with the ID of the ContentPlaceHolder in which the page is placed. ("MainContent" in this example).

You are not done with this. You also have to add the HTML "onclick" attribute to the buttons in order to make it work. Add the below lines in the Page_Load function of Default.aspx.

JavaScript
btnAddItem.Attributes.Add("onclick", "return selectItems
(‘" + lstboxItems.ClientID + "‘, 
‘" + lstboxSelectedItems.ClientID + "‘);");
btnRemoveItem.Attributes.Add("onclick", "return selectItems
(‘" + lstboxSelectedItems.ClientID + "‘, 
‘" + lstboxItems.ClientID + "‘);");

Now save, build and run the application. You can move the items among the list boxes.

Hope this helps! :-)

License

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


Written By
Software Developer
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

 
-- There are no messages in this forum --