如何动态地将列添加到Jquery DataTable

时间:2013-09-14 09:51:56

标签: javascript jquery jquery-datatables

我有学生学费模块,我想明智地生成学费。意味着为整个班级而不是特定学生产生费用。 DataTable将如下所示..

|RegistrationNo | Name | AdmissionFee | TutionFee | SportsFee | Exam Fee| Discount |
------------------------------------------------------------------------------------
|    50020      |   A  |     1000     |     800   |    500    |   400   |   300    |
|    50021      |   B  |     1000     |     800   |    500    |   400   |   100    |

等等,全班......

问题是Fees是由学校定义的,所以我没有固定数量的费用,例如Transport Fee可以定义,Library Fee可以定义,任何其他费用学校想要的可以定义。所以这些费用名称来自FeeDefination表。现在我应该如何将这些费用添加到aoColumns作为属性。 我试过以下代码......

     var html = '[';
     var oTable = $('#GenerateFeeDataTable').dataTable({
                "bJQueryUI": true,
                "bServerSide": true,
                "bPaginate": false,
                "bFilter": false,
                "bInfo": false,
                "sAjaxSource": "/forms/StudentFee/studentfee.aspx/GenerateStudentFee?CampusId=" + campusId + "&ClassId= " + classId + '&Session=' + JSON.stringify(session) + "&FeeModeId=" + feeModeId,
                "fnServerData": function (sSource, aoData, fnCallback) {
                    $.ajax({
                        "type": "GET",
                        "dataType": 'json',
                        "contentType": "application/json; charset=utf-8",
                        "url": sSource,
                        "data": aoData,
                        "success": function (data) {
                            var data = data.d;
                            html += '{"sTitle":"Registration No","mDataProp":"RegistrationNo","bSearchable":false,"bSortable":false},';
                            html += '{"sTitle":"Student Name","mDataProp":"StudentName","bSearchable":false,"bSortable":false},';
                            html = html.substring(0, html.length - 1);
                            html += ']';
                            fnCallback(data);
                        }
                    });
                },
                "aoColumns": html
 });

我如何在aoColumns中将fnServerData属性设为静态,但这些属性不会被修复,我只是想尝试我是否会工作,但它不起作用..

My Questions are :
1) How to handle this situation, means how to add aoColumns dynamically.
2) How to get Header/Variables Name from JSON aaData, below is the Image to understand.

enter image description here

有没有办法完成这样的任务,任何帮助..

1 个答案:

答案 0 :(得分:4)

我建议您使用自定义HTML表格,而不是使用 jQuery DataTables 。然后,您可以遍历数据(使用jQuery的each迭代器)并使用循环参数访问(例如)标题列。

例如:

var data = data[0]; // access the first row only
$.each(data, function(k, v) {        // here k is an index and v is a value
    alert(k); // show the column's name in alert
    $('body').append('<table><tr><td>' + v.RegistrationNo + '</td></tr></table>');
}); 

希望这有帮助。