vote up 0 vote down star

I have a form with a select box that allows multiple options. After a user saves these options, it stores them in a database table.

I can then read this database table to get the options they chose one again. I need to be able to grab this data from the database, put it into an array, then have the options in that select box to be pre-selected when they go to "Edit" their options.

Reading the data into an array is fine, and I know how to make a single option selected within a select box, however I'm not sure how to handle multiple options being selected in javascript.

Can someone help me figure out the javascript required to do this?

flag

57% accept rate

3 Answers

vote up 1 vote down check

A pure javascript solution

<select id="choice" multiple="multiple">
  <option value="1">One</option>
  <option value="2">two</option>
  <option value="3">three</option>
</select>
<script type="text/javascript">

var optionsToSelect = ['One', 'three'];
var select = document.getElementById( 'choice' );

for ( var i = 0, l = select.options.length, o; i < l; i++ )
{
  o = select.options[i];
  if ( optionsToSelect.indexOf( o.text ) != -1 )
  {
    o.selected = true;
  }
}

</script>

Although I agree this should be done server-side.

link|flag
This is close, however the values stored are not the "index" of the options, they are the values of the options. – Dave Hunt Aug 18 at 19:51
Simple fix - answer updated! – Peter Bailey Aug 18 at 22:50
vote up 2 vote down

Declare it to be "Multiple"

<select name="options" MULTIPLE>

Further Reading...

As for the selecting, I would handle that server-side:

PHP Example:

$options = array("red","blue","orange","green");
$chosen  = array("blue","green");

<select name="favColors" MULTIPLE size="4">
<?php foreach ($options as $color) { ?>
<option <?php print (in_array($color,$chosen)) ? "selected" : "" ; ?>>
  <?php print $color; ?>
</option>
<?php } ?>
</select>

Which outputs:

<select name="favColors" MULTIPLE size="4">
  <option>Red</option>
  <option selected>Blue</option>
  <option>Orange</option>
  <option selected>Green</option>
</select>

Selecting with jQuery

You can also do the selection with jQuery (not suggested, but you requested it explicitly), but you'll need to transfer the selected elements names into a javascript array.

var chosen = ['blue','green']; // this will have to be made server-side

$("select.someClass option").each(function(){
  if (in_array($(this).val(), chosen)) {
    $(this).attr("selected","selected");
  }
});

function in_array (needle, haystack, argStrict) {
    var key = '', strict = !!argStrict;
    if (strict) {
        for (key in haystack) {
            if (haystack[key] === needle) {
                return true;
            }
        }
    } else {
        for (key in haystack) {
            if (haystack[key] == needle) {
                return true;
            }
        }
    }
    return false;
}
link|flag
I already have the select form, I was looking more for a javascript solution to the auto select. Every other part of the form uses javascript, I'm just not sure how to select multiple options with the javascript code. – Dave Hunt Aug 18 at 19:35
Doing it server-side makes more sense, and you will still end up generating an array server-side for the client-side code. – Residuum Aug 18 at 19:40
Server side does make more sense, but I don't want to redo everything thats already done. The previous developer used all javascript, so I'm just going to stick with it for this. – Dave Hunt Aug 18 at 20:03
vote up 0 vote down

You can get access to the options array of a selected object by going document.getElementById("cars").options where 'cars' is the select object.

Once you have that you can call option[i].setAttribute('selected', 'selected'); to select an option.

I agree with every one else that you are better off doing this server side though.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.