当jQuery数据表没有可用数据时,如何通过datatable应用colspan时追加数据

时间:2019-01-29 14:11:54

标签: jquery datatable

默认情况下,我尝试在显示为“无可用数据”的消息后追加行。我需要重绘表,但是由于应用于该消息列的colspan无法动态追加列。如何删除该colspan并将列添加到该行。我在这里尝试过:

    var row = $("#Schedule-datatable tbody tr:last-child").removeAttr("style").removeAttr("class").clone(true);
        $("#Schedule-datatable tbody tr").remove();
        var dt = $("#Schedule-datatable").dataTable({
            "bRetrieve": true
        }).api();
        dt.clear();
        dt.draw(false);

//Here I'm binding the columns inside loop for list of rows.

    {
    dt.row.add($(row)).draw();
                row = $("#Schedule-datatable tbody tr:last-child").clone(true);
    }

如果我收到消息“无可用数据”,则无法再次将项目列表绑定为行。如何解决此问题。欢迎任何解决方案。

0 个答案:

没有答案