A page refresh (done manually in the browser) containing a datatable causes the loss of any style/order assigned in the sub called by the form onshow event or in the loadcomplete database callback (I think that the datatable gets refreshed after those events). I know that there is a datatable event that may be fired on datatable load completion (initComplete?) but I’m unable to use it. I tried the following without success
JavaScript
$('#Datatable1').dataTable( {
"initComplete": function(settings, json) {
alert( 'DataTables has finished its initialisation.' );
}
} );
End JavaScript
Any suggestion?