In datatable while sorting in descending order empty cells are coming at last but while sorting in ascending order empty spaces are displaying top of datatable, I need to display those empty spaces at bottom of the table even after sorting in both ascending and descending.
$('#idealistTable').DataTable({
"paging": false,
"searching": false,
"ordering": true,
"info": false,
"order": [
[4, "desc"]
]
});