0
I have a datatable created manually in View follows code
<table id="datatable">
  <thead>
    <tr><th>Nome</th></tr>
  </thead>
  <tbody>
     <tr><td>Victor</td></tr>
  </tbody>
</table>
It is a data table that uses the jquery plugin
How can I set "aaSorting" to: [], after it is loaded ?
Follow the code I try to make
$('#datatable').DataTable({
  "aaSorting" : [],
});
But I can’t because the datatable has already been created, and the . Datatable is only for data initialization
When is it created? Post more details.
– DaviAragao