Allow ordering, but none default order
Allow ordering, but none default order
petenka
Posts: 1Questions: 1Answers: 0
I want ordering, but it automatically orders by the first row.
How can I achieve no default ordering?
$('#table').DataTable({
...,
"ordering": true,
"order": [[ NONE???]],
});
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
According to the
order
docs you would useorder: []
.Kevin