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.

Is there any jQuery or javascript library that generates a dynamic table given json data? I don't want to define the columns, the library should read the keys in the json hash and generate columns.

Of course, I can myself iterate through the json data and generate the html table. I just want to know if any such library exists which I can simply reuse.

Thanks.

share|improve this question
1  
Well, Thanks for the replies. But to suffice my requirements I wrote one for myself. jsfiddle.net/manishmmulani/7MRx6 – Manish Mulani Mar 3 '11 at 14:30

5 Answers

up vote 4 down vote accepted

Thanks all for your replies. I wrote one myself.

Javascript:

var myList = [{"name" : "abc", "age" : 50},
              {"age" : "25", "hobby" : "swimming"},
              {"name" : "xyz", "hobby" : "programming"}];

// Builds the HTML Table out of myList json data from Ivy restful service.
function buildHtmlTable() {
    var columns = addAllColumnHeaders(myList);

    for (var i = 0 ; i < myList.length ; i++) {
        var row$ = $('<tr/>');
        for (var colIndex = 0 ; colIndex < columns.length ; colIndex++) {
            var cellValue = myList[i][columns[colIndex]];

            if (cellValue == null) { cellValue = ""; }

            row$.append($('<td/>').html(cellValue));
        }
        $("#excelDataTable").append(row$);
    }
}

// Adds a header row to the table and returns the set of columns.
// Need to do union of keys from all records as some records may not contain
// all records
function addAllColumnHeaders(myList)
{
    var columnSet = [];
    var headerTr$ = $('<tr/>');

    for (var i = 0 ; i < myList.length ; i++) {
        var rowHash = myList[i];
        for (var key in rowHash) {
            if ($.inArray(key, columnSet) == -1){
                columnSet.push(key);
                headerTr$.append($('<th/>').html(key));
            }
        }
    }
    $("#excelDataTable").append(headerTr$);

    return columnSet;
}​

HTML:

<body onLoad="buildHtmlTable()">
<table id="excelDataTable" border="1">
  </table>
</body>​
share|improve this answer
Hi @Manish-mulani this did not work to me, could u check again – Nish Mar 28 at 0:22
1  
@Nish Did you check jsfiddle.net/manishmmulani/7MRx6 – Manish Mulani Apr 25 at 7:13

I think http://www.trirand.com/blog/ is what you are looking for. It takes JSON and converts it into a grid.

share|improve this answer

Don't have one for jQuery, but since for "real" apps I prefer YUI3 anyway I would like to take the liberty to point out YUI3 DataTable: http://developer.yahoo.com/yui/3/datatable/

share|improve this answer

You can also use this simple project on Github : Json-To-HTML-Table

share|improve this answer

Check out JSON2HTML plugin for jQuery. It allows you to specify a transform that would convert your JSON object to unstrcutured list that you could easily format into a table. (i.e. use CSS to change the display properties of the li elements to inline-block).

share|improve this answer
figured I'd update the link here to json2html.com – Chad Brown Dec 28 '12 at 4:50

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.