Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to get the property names from a JSON object to build a table dynamically

example:

var obj = { 'fname': 'joe', 'lname': 'smith', 'number': '34' };

for (var i = 0; i < obj.properties.length; i++) {
    alert(' name=' + obj.properties[i].name 
        + ' value=' + obj.properties[i].value);
}

would alert

name=fname value=joe

name=lname value=smith

name=number value=34


then I could build a table using json like this

var obj = { 'players': [ 
     { 'fname': 'joe', 'lname': 'smith', 'number': '34'} , 
     { 'fname': 'jim', 'lname': 'Hoff', 'number': '12'} , 
     { 'fname': 'jack', 'lname': 'jones', 'number': '84'}   
] };

to produce...

fname lname number

joe smith 34

jim Hoff 12

jack jones 84

UPDATE

thanks to the answer I have produced a table from the json objects using the property names from the first object in the list for the headers

    function renderData() {
        var obj = { 'players': [
            { 'fname': 'joe', 'lname': 'smith', 'number': '34' },
            { 'fname': 'jim', 'lname': 'jones', 'number': '12' },
            { 'fname': 'jack', 'lname': 'Hoff', 'number': '84' } 
            ] };

        var cols = GetHeaders(obj); 

        $('#Output').html(CreateTable(obj, cols));
    }


    function CreateTable(obj, cols) {
        var table = $('<table></table>');
        var th = $('<tr></tr>');
        for (var i = 0; i < cols.length; i++) {
            th.append('<th>' + cols[i] + '</th>');
        }
        table.append(th);

        for (var j = 0; j < obj.players.length; j++) {
            var player = obj.players[j];
            var tr = $('<tr></tr>');
            for (var k = 0; k < cols.length; k++) {
                var columnName = cols[k];
                tr.append('<td>' + player[columnName] + '</td>');
            }
            table.append(tr);
        }
        return table;
    }



    function GetHeaders(obj) {
        var cols = new Array();
        var p = obj.players[0];
        for (var key in p) {
            //alert(' name=' + key + ' value=' + p[key]);
            cols.push(key);
        }
        return cols;
    }
share|improve this question
1  
Sorry, but could you be more clear please, What is the final thing that you want to achieve ? you just made a multidimensional array inside the obj, Thanks – Mahesh Velaga Dec 9 '09 at 20:11
the multidimensional array inside the obj was a mistake. I wanted to turn the following JSON into a table. var obj = { 'players': [ { 'fname': 'joe', 'lname': 'smith', 'number': '34' }, { 'fname': 'jim', 'lname': 'jones', 'number': '12' }, { 'fname': 'jack', 'lname': 'Hoff', 'number': '84' } ] }; thanks – eiu165 Dec 9 '09 at 21:01

1 Answer

up vote 26 down vote accepted
for (var key in obj) {
   alert(' name=' + key + ' value=' + obj[key]);

   // do some more stuff with obj[key]
}
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.