lower sorting arrow
lower sorting arrow
![mfeske](https://secure.gravatar.com/avatar/a74cf06e39325b37308f84ed5d94f20a/?default=https%3A%2F%2Fvanillicon.com%2Fa74cf06e39325b37308f84ed5d94f20a_200.png&rating=g&size=120)
Hello,
I have a problem with datatables. Unfortunately I will not see the lower sorting arrow. What could that be?
This discussion has been closed.
Hello,
I have a problem with datatables. Unfortunately I will not see the lower sorting arrow. What could that be?
Answers
Likely because you are loading this on line 18:
And this on line 61
And they are conflicting. Seems like you want BS4 so try removing line 61.
Kevin
nice ! thanks, now it works.
A other Problem, where must I load the //cdn.datatables.net/plug-ins/1.10.19/i18n/German.json
I believe you are looking for
language.url
.Kevin
with:
$(document).ready(function() { $('#example').DataTable(){ "language": { "url": "/dataTables/i18n/de_de.lang" } } ); } );it works not, must i have the file de_de.lang local ?
If you are attempting to load that file, then yes, it would need to be on the server. Is it, or is that Ajax request giving a 404 error? Alternatively load it directly from the CDN using the address you gave above.
Allan
Hello Allan,
sorry I dont understand :-( Can you send me the row for loading from cdn ?
no http://bootstrap4.allmendeweg.de/test_tabelle_datatable.php :-(
You have a syntax error in your script. The browser's console is showing this:
The second line in the above should look like this:
Keivn
Thanks Keivn, now it works