Server side sorted data not showing in same order in Datatables Server side sorted data not showing in same order in Datatables codeigniter codeigniter

Server side sorted data not showing in same order in Datatables


A simple solution to that problem is, just specify empty [] for order option.

$('#example').DataTable( {    "order": []} );

No ordering applied by DataTables during initialization. The rows are shown in the order they are read by DataTables (i.e. the original order from the DOM if DOM sourced, or the array of data if Ajax / data sourced):

Source: DataTable:Order