Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Multiple Select Drop Down Box


MCousin76

Recommended Posts

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

  • 2 weeks later...

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...