New, Edit and Delete buttons disappear with German language active
New, Edit and Delete buttons disappear with German language active
akradi
Posts: 1Questions: 1Answers: 0
When I configure an other language in the js file
var table = $('#Firma').DataTable( {
ajax: 'php/table.Firma.php',
[...]
"language": {
"url": "de.json"
}
} );
the Buttons new, delete, update disappears. What must be configured additionally?
- English: Everthing is perfect
- German: The Buttons are invisible
Thanks for a hint and your help.
This discussion has been closed.
Answers
Hi,
You are using the
language.url
option which is causing the issue here. As its documentation notes:Which is how to resolve the issue you are seeing here - initialise the Buttons inside the
initComplete
callback.Allan