How to modify child row table

How to modify child row table

inajafinajaf Posts: 13Questions: 8Answers: 0

Hi guys, how to change the design of the child row like here https://datatables.net/examples/api/row_details.html

Currently my code:

$(document).ready(function () {
    var emp = $('#countable').DataTable({
        responsive: true,
        order: [[ 2, "asc" ]]
    });

    emp.on('order.dt search.dt', function () {
        emp.column(1, {search:'applied', order:'applied'}).nodes().each(function (cell, i) {
            cell.innerHTML = i+1;
        });
    }).draw();
});

and table:

This question has an accepted answers - jump to answer

Answers

Sign In or Register to comment.