Click here to Skip to main content
15,890,408 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to create a dropdown list with multi select allowed... the multi select is done using checkox for each item in the DDL please help me out..



I still have not figured this out .. anyone pls help
Posted
Updated 29-Sep-12 4:26am
v2

You can use the Multiple Option. It will allow you to select multiple Option from the Drop Down List. But you need to use the CTRL Key to Select multiple options.

HTML
<select id="MultiOption" multiple="multiple">
    <option>Option1</option>
    <option>Option2</option>
    <option>Option3</option>
</select
 
Share this answer
 
Comments
Arjun Menon U.K 27-Sep-12 2:56am    
Mazumder i tried the method u told but sadly my requirement is that a checkbox must appear for every item in the DDL... :(
use this link for this purpose

http://lab.arc90.com/2007/07/02/multiselect/[^]
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900