Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get the ID values of multiple selection list. The multiple selection list is generated dynamically. How to get that values? If i can able to get the values means, can I convert it to JSON object or, it ll be obtained as JSON object!!!!

Here is my code to generate it dynamically.

function displayMultipleList() {
    EmployeeManagement.getResponseList(function (respList) {
        var respOptionsSelect = document.getElementById('respOptions');
        var searchOptions = null;
        for (var i = 0; i < respList.length; i++) {
            var resp = respList[i];
            selectOptions = document.createElement('option');
            selectOptions.value = resp.respID;
            selectOptions.innerHTML = resp.respName;
            respOptionsSelect.appendChild(selectOptions);
        }


    });
}

Thanks.

share|improve this question
2  
are you really using JQuery?... or it is just a TAG? – Garis M Suero Aug 31 '10 at 19:00
I agree with the sentiment from Garis here. I see no jQuery here when it could easily be used to simplify the OP's code (and possibly even speed it up). – treeface Aug 31 '10 at 19:06

3 Answers

up vote 1 down vote accepted

Taking the ambiguity of the question as a challenge, here are two options.

You're asking "how to get the values" and "convert it to JSON object." Taking that literally, and ignoring the mention of id, you can simply do this:

var x = JSON.stringify( $('#respOptions').val() );

...which will give you a simple (JSON) array of the selected values:

["somevalue","anothervalue"]

But if by "get the ID values" you mean "get the IDs and values of selected options", then you can do something like this:

var y = $('#respOptions option:selected').map( function(i,el){
    var result = {};
    result[ el.id ] = $(el).val();
    return result;
}).get();
y = JSON.stringify(y);

...which will give you an array like this:

[{"id1":"somevalue"},{"id5":"anothervalue"}]

I threw together a fiddle that makes assumptions about your HTML, and mocks in the respList from which the options are dynamically added. It solves the problem both ways.

If your browser doesn't support JSON.stringify, you can use Crockford's oft-recommended json2.js library.

share|improve this answer

You can use the serializeArray() function:

$("#respOptions").serializeArray()

It will return to you the selected objects in a JavaScript array which can be easily stringified to a JSON string.

If your <select> element looks like this (don't forget the name attribute, as serializeArray needs it!):

<select name="respOptions" id="respOptions" multiple="true">
 <option value="1">one</option>
 <option value="2">two</option>
 <option value="3">three</option>
</select>

If items 2 and 3 were selected, you would get this back from the function:

[{ name: "respOptions", value: "2"}, {name: "respOptions", value: "3"}]

EDIT - I forgot to add the name attribute to the <select> element. Sorry for the confusion.

share|improve this answer
Good answer, D. However, I think it's important to point out that the OP said, "I want to get the ID values of multiple selection list." Excruciatingly vague, sure, but I suspect he meant the value of the ID attribute as opposed to simply the values. Regardless, glad you posted this so as to cover all the bases. – treeface Aug 31 '10 at 19:40

Here's how you iterate over a list of options inside a select element and get the ids:

http://jsfiddle.net/bXUhv/

In short:

$('option', $('#optionlist')).each(function() {
    alert($(this).attr('id'));
});​

With regard to converting any data into a JSON object, please look into this jQuery library.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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