Hi! I have problems with IE11 and serverside processing.
Hi! I have problems with IE11 and serverside processing.
faunus
Posts: 1Questions: 1Answers: 0
Using Pagination to scroll page doesn't work. When refreshing the page result is there.
Processing ... is always shown over the table.
I know this issue is discussed earlier.
I tried with type: 'POST' and with out. No change.
Firefox and Chrome hasn't this issue.
Need help!
Code is:
// Init the DataTable (HTML5 Table)
$(document).ready(function() {
var FeUser = "<?php echo $this->user; ?>";
var table = $('#table_sort_custom').DataTable( {
"order": [[1, "desc" ]],
"stateSave": true,
"lengthMenu": [[10, 20, 50, 100], [10, 20, 50, 100]],
"paginationType": "full_numbers",
"processing": true,
"serverSide": true,
"sClass": "allignRight",
"ajax": {
url: "<?php if ($_SERVER['SERVER_PORT'] == '80') { echo 'http://'; } else { echo 'https://'; } echo $_SERVER['HTTP_HOST']; ?>/system/modules/xxx/xxx/dt_server_side_archive.php",
type: 'POST',
data: {
data_user_id: FeUser
},
},
"language": {
"info": "Anzeigen _START_ bis _END_ von _TOTAL_ Zeilen",
"infoFiltered": "",
"lengthMenu": "Anzeigen _MENU_ Zeilen pro Seite",
"zeroRecords": "Keine Dokumente zum Anzeigen, oder Suche erfolglos!",
"search": "Suchen: ",
"paginate": {
"first": "<<",
"last": ">>",
"next": ">",
"previous": "<"
}
},
This discussion has been closed.