0

我很难理解数据表发生了什么。我创建一个 DataTable 如下

var dTable = $('#sessionReport').dataTable({
        "bInfo" : false,
        "bFilter" : false,
        "aaData" : data,
        "bDestroy" : true,
        "fnFooterCallback" : function(nRow, aaData, iStart, iEnd, aiDisplay){
            var totalAttendees = 0;
            var totalTime = 0;
            var avgSatisfaction = 0;
            for(var i=0; i<aaData.length; i++){                 
                avgSatisfaction = avgSatisfaction + ((aaData[i][7]*1)+3*1)/aaData.length; // range is from -2 to + 2; have added 3 to each result to make range of positive numbers only
                totalAttendees = totalAttendees + aaData[i][5]*1;
                startTime = new Date(aaData[i][0]);
                endTime = new Date(aaData[i][1]);
                totalTime = totalTime + (endTime - startTime)/10000;
            }
            //alert(secondsToString(totalTime));
            //$('#tfAttendees').innerHTML = parseInt(totalAttendees);
            var nCells = nRow.getElementsByTagName('th');
            nCells[5].innerHTML = parseInt(totalAttendees);
            nCells[7].innerHTML = parseFloat(avgSatisfaction.toFixed(2));
        }
    });
    return dTable;

我的数据格式如下:

[ 0: "2012-10-24 09:43:03"
    1: "2012-10-24 09:49:47"
    2: "5002028"
    3: "Eamonn"
    4: "Dannys Memories"
    5: "7"
    6: ""
    7: "0" ],
    [O:....],

但是当我想像在这个解决方案 http://datatables.net/blog/Drill-down_rows中那样向每一行添加一个带有图标的列时遇到问题

我尝试过使用 aoColumns 和 aoColumnsdef。但不确定如何。我的问题是表格 html 是由数据构建的。因此,如果数据数组中只有 7 项,我的 Html 表中将只有 7 列。如何添加第八列。我希望每一行的开头都有一个可点击的图标。

我的html看起来像这样......

<table id="sessionReport" class="table table-striped fTable">
                <thead>
                    <tr>
                        <td>Start Session</td>
                        <td>End Session</td>
                        <td>Session Id</td>
                        <td>Facilitator</td>
                        <td>Group Name</td>
                        <td>No. Attendees</td>
                        <td>Assistant</td>
                        <td>Satisfaction</td>
                    </tr>
                </thead>
                <tbody>
                </tbody>
                <tfoot>
                    <tr>
                        <th id="tfStartSession">
                        Total Hours
                        </th>
                        <th id="tfEndSession">
                        </th>
                        <th id="tfSessionId">
                        </th>
                        <th id="tfFacilitator">
                        </th>
                        <th id="tfGroupName">
                        TOTAL ATTENDEES :
                        </th>
                        <th id="tfAttendees">
                        </th>
                        <th id="tfAssistant">
                        AVG SATISFACTION :
                        </th>
                        <th id="tfSatisfaction">
                        </th>                           
                    </tr>
                </tfoot>
            </table>

有任何想法吗。我对 DataTables 文档感到有些困惑,它们似乎没有提供任何 aoColumns 或 aoColumnsDef 的使用示例。

非常感谢

4

0 回答 0