Avoid columns sort in Datatables while loading page

Avoid columns sort in Datatables while loading page

supervsxsupervsx Posts: 1Questions: 0Answers: 0

Hi every one
I am using Datatables and I load data rows from a sql table with a specific sort order, how can tell to Datatables grid don't apply any sort yourself?, I tried many examples with parameter ons the ready function without success,
Thank You in advance for reply

This is function ready code ( jquery.dataTables.js version 1.9.3)

$(document).ready(function() {
$('#example').dataTable(
{
"bStateSave": true,
"oLanguage": {
"sProcessing": "Caricamento...",
"sLengthMenu": "Mostra MENU Messaggi per pagina",
"sZeroRecords": "Nessun Messaggio trovato",
"sInfo": "Visualizzazione da START a END - di TOTAL Messaggi",
"sInfoEmpty": "Visualizzazione dal record 0 al 0 - Totale 0 Messaggi totali",
"sInfoFiltered": "(Filtrato da un totale di MAX Contatto)",
"sInfoPostFix": "",
"sSearch": "Cerca:",
"sUrl": "",
"oPaginate": { "sFirst": "Inizio", "sPrevious": "Precedente", "sNext": "Successivo", "sLast": "Fine" }
}
}
);
} );

This discussion has been closed.