Chrome issue displaying "processing" element (text/SVG)
Chrome issue displaying "processing" element (text/SVG)
RedPanda
Posts: 3Questions: 1Answers: 0
Hi,
I'm having an issue with Chrome. The .dataTables_processing
element, which is supposed to hold the "Loading" text/image, never gets displayed (CSS display property value remains "none" in all circumstances).
I did set the processing option to true:
$('#table').DataTable({
processing:true,
language: {
processing: 'Loading...'
},
...
});
It works perfectly fine on Firefox.
Any idea?
Thanks in advance
Edit: Same issue on IE.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Hi @RedPanda ,
That shouldn't be different between the browsers. We're happy to take a look, but it would help, as per the forum rules, if you could link to a running test case showing the issue so we can offer some help. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here.
Cheers,
Colin
Hi
Thanks for your answer. I found the issue, it was the
async
param in my ajax. Here is a part of my code: