将动态创建的JSON对象绑定到JQUERY数据表

时间:2014-03-21 06:04:51

标签: javascript jquery asp.net json jquery-datatables

如何将动态JSON对象绑定到jquery数据表。有没有人在这种情况下工作过。

例如,

var objTable = jQuery.parseJSON(result);

        if objTable != null && objTable .length > 0) {
            $('#tblName').dataTable({
                "bDestroy": true,
                "bScrollCollapse": true,
                "bJQueryUI": true,
                "bPaginate": false,
                "sScrollY": "310px",
                "bInfo": true,
                "bFilter": true,
                "bSort": true,
                "aaData": objTable,
                "aoColumns": [
                    { "mData": "Field1" },
                    { "mData": "Field2" },
                    { "mData": "Field3" },
        .
        .
        .
        .
                    { "mData": "FieldN" }]    //These are dynamically created columns present in JSON object.

            });
        }

1 个答案:

答案 0 :(得分:1)

可以动态地将数据添加到数据表

喜欢这个

$('#YourTableID').dataTable().fnAddData([sno,msg.json[i].unit_id,msg.jsoni].date_time,msg.json[i].sms_number,msg.json[i].message]);

在此之前,您在表格中有5个标题可以添加到上面