Datatable doesn't show any records in Chrome only

Datatable doesn't show any records in Chrome only

hakhakhakhakhakhak Posts: 1Questions: 0Answers: 0
edited August 2013 in General
Hi there,

I'm having a problem with Datatables and I don't have a clue on how to fix it.

I use Datatables in a custom cms and everything works as it should on my Mac (Safari, Chrome, Firefox). Also with my colleagues everything works fine (Windows).

But we have a customer (and probably more than just one) where the Datatables doesn't show anything. I received a screenshot from the customer where only the with the titles is visible. Datatables isn't showing anything, also not "No records found". This customer is having this problem in Google Chrome version 28.0.1500.95 on a Windows machine. When the customer opens Internet Explorer everything works just fine.

I can't reproduce the problem, so I'm hoping you guys can help me out.
Maybe this is a more common problem? Or is it possible the client has something on his pc, what causes Datatables to not work properly? The client has not disabled Javascript, cause then the cms shows a message and that message is not visible in the screenshot.

This is the JS I have for this table:

[code]
$(document).ready( function() {
$('#applicationsTable').dataTable( {
"aaSorting": [[4,"desc"]],
"bPaginate": true,
"iDisplayLength": 50,
"bFilter": true,
"oLanguage": {
"oPaginate": {
"sPrevious": "Vorige",
"sNext": "Volgende",
},
"sSearch": "Zoeken:",
"sInfo": "Toont _START_ t/m _END_ van de _TOTAL_ sollicitaties.",
"sLengthMenu": "Toon _MENU_ sollicitaties"
}
} );
});
[/code]

Replies

  • allanallan Posts: 63,133Questions: 1Answers: 10,399 Site admin
    Please see: http://datatables.net/forums/discussion/12899/post-test-cases-when-asking-for-help-please-read
This discussion has been closed.