Debugger code (debug.datatables.net):
I would like to add a row to my table. I used this:
shippingTable.on('draw.dt', function (e) {
var newRow = '<tr><td class="dtr-control" tabindex="0"></td><td class="select-checkbox"></td><td>Ritiro al magazzino di Lamone Cleanlife</td><td></td><td></td></tr>';
$('#shippingaddr tbody').append(newRow);
});
Now, for the added line, the function does not work "select row".
Description of problem:
select: {
style: 'single',
info: false
},
does not work for the newly added row.
What can I do?