tags:

views:

111

answers:

3

This is an odd question, and I think it belongs on Stack Overflow since it has to do with HTML/Javascript - if it doesn't belong, let me know and I'll ask it elsewhere.

I am trying to implement a component in my web application, but I do not know what it is called, so I don't know how to search for help on it!

It is where you have a list of things in a combo box on the left side, some arrows in the middle to send list items between combo boxes, and a combo box on the right side that shows the items you have selected.

Here is a "picture" of what I mean:

+-------+        +-------+
| item1 |  --->  | item2 |
| item3 |        |       |
| item4 |  <---  |       |
+-------+        +-------+

I'm sure there is a JQuery plugin for this too, so if anyone has any recommendations, I'd appreciate it. Thanks in advance!

+2  A: 

There isn't an HTML tag for this, it has to be implemented in JavaScript. It wouldn't be all that hard even without jQuery.

Rusky
+9  A: 

There is no 'component' that will do this. This thread should help:

Moving items in Dual Listboxes

You have both a jQuery and native javascript example.

Alex
Thanks - I knew there wasn't an HTML tag for it or anything - I probably mis-used the word "component" - but I appreciate the link - that's exactly what I needed!
BrianH
+2  A: 

There is also a jQuery plugin here. The examples aren't very flashy, but they do the job.

jimyshock
Thanks for the example jQuery plugin! +1
BrianH