MCousin76 Posted May 20, 2008 Share Posted May 20, 2008 A few of my products require a multiple select drop down box. Example =========== Color Imprint: =========== red white black blue yellow green brown I would like the customer to be able to select red, white and blue if thats how many imprint colors he needs to print. Right now everything is listed in a regular drop down box where the customer can only select one color. Does anyone know how to do something like this? Thanks - Mike C. Link to comment Share on other sites More sharing options...
naveedramzan Posted June 3, 2008 Share Posted June 3, 2008 given snippet will be solve your problem <body> <select name="color" multiple size="5"> <option selected>Select color</option> <option>White</option> <option>Red</option> <option>Black</option> <option>Gray</option> <option>Blue</option> <option>Brown</option> <option>Yellow</option> <option>Pink</option> </select> </body> thanks Muhammad Naveed Ramzan Software Engineer Discretelogix (Pvt.) Ltd. Islamabad, Pakistan Mail: [email protected] Link to comment Share on other sites More sharing options...
MCousin76 Posted June 3, 2008 Author Share Posted June 3, 2008 given snippet will be solve your problem <body> <select name="color" multiple size="5"> <option selected>Select color</option> <option>White</option> <option>Red</option> <option>Black</option> <option>Gray</option> <option>Blue</option> <option>Brown</option> <option>Yellow</option> <option>Pink</option> </select> </body> thanks Do you know of a way to add a multiselect dropdown option in the admin / attributes section? That would be a great contribution add-on. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.