Improve no data UI messages on empty tables.

This commit is contained in:
Roman Vynar
2018-08-14 15:16:21 +03:00
parent 0f6bf65015
commit 734afe56b5
3 changed files with 16 additions and 6 deletions

View File

@@ -6,7 +6,10 @@
$('#datatable').DataTable({
"pageLength": 10,
"order": [[ 4, 'desc' ]],
"stateSave": true
"stateSave": true,
"language": {
"emptyTable": "No events."
}
});
});
</script>