problem with jquery tablesorter with dynamic added rows

后端 未结 4 716
Happy的楠姐
Happy的楠姐 2021-01-11 10:11

hello i am having a problem with dynamically added rows to jquery tablesorter,

i have to add a row in the beginning of the table, by default the tablesorter works fi

4条回答
  •  甜味超标
    2021-01-11 10:30

    The tablesorter website offers details of how to do this, at: Appending table data with Ajax. The code is reproduced below:

    $(document).ready(function() {
        $("table").tablesorter();
        $("#ajax-append").click(function() {
            $.get("assets/ajax-content.html", function(html) {
                // append the "ajax'd" data to the table body 
                $("table tbody").append(html);
                // let the plugin know that we made a update 
                // updateAll ensures sorting is updated as well
                $("table").trigger("updateAll");
                // set sorting column and direction, this will sort on the first and third column 
                var sorting = [[2, 1], [0, 0]];
                // sort on the first column 
                $("table").trigger("sorton", [sorting]);
            });
            return false;
        });
    });
    

提交回复
热议问题