DataTables
Advanced interaction
features for your tables.
Editor
Comprehensive editing
library for DataTables.
Manual
Download
Examples
Manual
Reference
Extensions
Plug-ins
Blog
Forums
Discussions
Sign In
Support
FAQs
Download
Purchase
≡
Show site navigation
How to localize the string "No data available in table"
How to localize the string "No data available in table"
sd_zuo
Posts: 78
Questions: 1
Answers: 0
July 2010
edited July 2010
in
General
I checked the Usage section, no information about it there.
Replies
allan
Posts: 63,468
Questions: 1
Answers: 10,466
Site admin
July 2010
It's new in the 1.7 betas, so there isn't any formal documentation for it yet. It can be controlled with oLanguage.sEmptyTable .
Allan
alexquentin
Posts: 5
Questions: 0
Answers: 0
August 2010
Hi man!
1)Make a new folder in the folder of your project (e.g. language)
2)In that folder create new file like "contry_COUNTRY.txt" (e.g. for Russian language it will be named like ru_RU.txt)
3)Insude this file write next:
[code]
{
"sProcessing": "?????????...",
"sLengthMenu": "?????????? _MENU_ ?????",
"sZeroRecords": "?????? ?? ???????",
"sInfo": "???????? ? _START_ ?? _END_ ?? _TOTAL_ ?????",
"sInfoEmtpy": "???????? ? 0 ?? 0 ?? 0 ?????",
"sInfoFiltered": "(??????? ?? _MAX_)",
"sInfoPostFix": "",
"sSearch": "?????:",
"sUrl": "",
"oPaginate": {
"sFirst": " << ",
"sPrevious": " < ",
"sNext": " > ",
"sLast": " >> "
}
}
[/code]
4) in your project file (e.g .HTML-file) write next:
[code]
$(document).ready(function() {
var oTable = $('#example').dataTable( {
"oLanguage": {
"sUrl": "./language/ru_RU.txt"
},
"bProcessing": true,
"bServerSide": true,
"bRetrieve" : true,
"bLengthChange": false,
"sAjaxSource": "./server_processing.php"
});
} );
5)That's all! :-)
I've made it so and it's still working... :-)
Good luck.
alexquentin
Posts: 5
Questions: 0
Answers: 0
August 2010
Sorry for paragraph 4), I forgot to insert tag {code}
[code]
$(document).ready(function() {
var oTable = $('#example').dataTable( {
"oLanguage": {
"sUrl": "./language/ru_RU.txt"
},
"bProcessing": true,
"bServerSide": true,
"bRetrieve" : true,
"bLengthChange": false,
"sAjaxSource": "./server_processing.php"
});
} );
[/code]
codecraig
Posts: 4
Questions: 0
Answers: 0
March 2011
As a side note, to just change the message when there is no data for the table (not counting localization here):
[code]
$(document).ready(function() {
var oTable = $('#example').dataTable( {
"oLanguage": {
"sEmptyTable": "The table is really empty now!"
},
"bProcessing": true,
"bServerSide": true,
"bRetrieve" : true,
"bLengthChange": false,
"sAjaxSource": "./server_processing.php"
});
} );
[/code]
This discussion has been closed.
Sign In
·
Register
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Quick Links
Categories
Recent Discussions
Unanswered
Categories
74.3K
All Categories
56
Priority support
24K
Free community support
997
General
14
Announcements
2.5K
DataTables
77
DataTables 2
1.3K
DataTables 1.10
92
DataTables 1.9
35
DataTables 1.8
9
CloudTables
2.2K
Editor
2.8K
Extensions
20
AutoFill
310
Buttons
50
ColVis
30
DateTime
68
FixedColumns
50
FixedHeader
31
ColReorder
30
KeyTable
103
Responsive
23
RowReorder
42
Scroller
163
SearchBuilder
193
SearchPanes
107
Select
26
StateRestore
22
TableTools
219
Bug reports
67
Feature requests
100
Plug-ins
11
Blog
69
Web-site
Replies
Allan
1)Make a new folder in the folder of your project (e.g. language)
2)In that folder create new file like "contry_COUNTRY.txt" (e.g. for Russian language it will be named like ru_RU.txt)
3)Insude this file write next:
[code]
{
"sProcessing": "?????????...",
"sLengthMenu": "?????????? _MENU_ ?????",
"sZeroRecords": "?????? ?? ???????",
"sInfo": "???????? ? _START_ ?? _END_ ?? _TOTAL_ ?????",
"sInfoEmtpy": "???????? ? 0 ?? 0 ?? 0 ?????",
"sInfoFiltered": "(??????? ?? _MAX_)",
"sInfoPostFix": "",
"sSearch": "?????:",
"sUrl": "",
"oPaginate": {
"sFirst": " << ",
"sPrevious": " < ",
"sNext": " > ",
"sLast": " >> "
}
}
[/code]
4) in your project file (e.g .HTML-file) write next:
[code]
$(document).ready(function() {
var oTable = $('#example').dataTable( {
"oLanguage": {
"sUrl": "./language/ru_RU.txt"
},
"bProcessing": true,
"bServerSide": true,
"bRetrieve" : true,
"bLengthChange": false,
"sAjaxSource": "./server_processing.php"
});
} );
5)That's all! :-)
I've made it so and it's still working... :-)
Good luck.
[code]
$(document).ready(function() {
var oTable = $('#example').dataTable( {
"oLanguage": {
"sUrl": "./language/ru_RU.txt"
},
"bProcessing": true,
"bServerSide": true,
"bRetrieve" : true,
"bLengthChange": false,
"sAjaxSource": "./server_processing.php"
});
} );
[/code]
[code]
$(document).ready(function() {
var oTable = $('#example').dataTable( {
"oLanguage": {
"sEmptyTable": "The table is really empty now!"
},
"bProcessing": true,
"bServerSide": true,
"bRetrieve" : true,
"bLengthChange": false,
"sAjaxSource": "./server_processing.php"
});
} );
[/code]