I am using datatable to show my data in a table and my code is like this:
$('#data_table').DataTable(data);
Right now i want to apply the properties "order": [] to the data table. I already tried below option but not working.
$('#data_table').DataTable( {
"order": [],
data:data,
} );