I wanted to have the table render items by descending order in a particular column, but doing so doesn't change the arrow visual indicator in the header as it does with the click event. If this is a bug, any workarounds?
$(document).ready( function () {
var table = $('#example').DataTable({
order: [0, 'dsc']});
} );