is it possible to add a row to the beginning of the table?
is it possible to add a row to the beginning of the table?

in DataTables
Link to test case:
Debugger code (debug.datatables.net):
Error messages shown:
Description of problem:
This question has an accepted answers - jump to answer
Answers
the order of the rows is dependent on the order of the table. This blog presents a solution to place rows at the top or bottom of the table.
Kevin
here is my code snippet:
$(document).ready(function() {
var t = $('#ncs').DataTable();
} );
where would I put position=top
Put it before the Datatables init code, just like the examples. In your case it looks like before
var t = $('#ncs').DataTable();
would be the correct place.Kevin