Javascript 如何使用DataTables RowsGroup插件显示行跨度数据中的单元格中间部分

Javascript 如何使用DataTables RowsGroup插件显示行跨度数据中的单元格中间部分,javascript,jquery,css,html,datatables,Javascript,Jquery,Css,Html,Datatables,以下是我关于jQuery ready函数的js代码: var data = responeText[1]; $('#table_id').DataTable({ "lengthMenu": [ [10, 25, 50, 100, -1], [10, 25, 50, 100, "All"] ], "columns": [ { name: 'first', title: 'Agent Name', },{

以下是我关于jQuery ready函数的js代码:

var data = responeText[1];
$('#table_id').DataTable({
    "lengthMenu": [ [10, 25, 50, 100, -1], [10, 25, 50, 100, "All"] ],
    "columns": [
        {
            name: 'first',
            title: 'Agent Name',
        },{
            name: 'second',
            title: 'Extension',
        },{
            name: 'third',
            title: 'Login Date',
        },{
            name: 'fourth',
            title: 'Login Time',
        },{
            name: 'fifth',
            title: 'Logout Date',
        },{
            name: 'sixth',
            title: 'Logout Time',
        }
    ],
    "data": data,
    "rowsGroup": [
        'first:name',
        'second:name',
    ],  
});
我使用Datatable和DataTableRowsGroup插件。 行分组数据显示行的顶部,但 我想在单元格中间显示行分组数据。我该怎么做