language.loadingRecords not working, why?
language.loadingRecords not working, why?
Jensson
Posts: 2Questions: 1Answers: 0
Hi!
language.loadingRecords, doesn't work, Why?
From this https://datatables.net/reference/option/language.loadingRecords I've tried in numerous ways.
$('#example').dataTable( {
"ajax": "json.txt",
"language": {
"loadingRecords": "Please wait - loading..."
}
} );
This discussion has been closed.
Answers
That looks like it should work to me. Can you give me a link to the page showing the issue so it can be debugged please.
Allan
Sorry, It's not on Internet. But I use following code, maybe it helps.
You aren't using Ajax so there is no loading happening. The data is already in the DOM if you aren't using
ajax
- hence why you won't see the loading message.Allan